Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Last active September 21, 2015 19:50
Show Gist options
  • Save AndyNovo/954e905048a6d4f20367 to your computer and use it in GitHub Desktop.
Save AndyNovo/954e905048a6d4f20367 to your computer and use it in GitHub Desktop.
#include<iostream>
int main(){
unsigned long number_of_rounds = 0;
std::cin >> number_of_rounds;
unsigned long j = 0;
for(unsigned long i = 0; i < number_of_rounds; i++){
j = i;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment