Skip to content

Instantly share code, notes, and snippets.

@mu-777
Created June 18, 2015 07:44
Show Gist options
  • Save mu-777/fa1c66ae8d069732d335 to your computer and use it in GitHub Desktop.
Save mu-777/fa1c66ae8d069732d335 to your computer and use it in GitHub Desktop.
loop.cpp
#include <iostream>
using namespace std;
int main() {
// your code goes here
for(int cnt ; true ; cnt++){
if (cnt % 10 == 0) continue;
cout<<cnt<<endl;
if (cnt > 100) break;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment