Skip to content

Instantly share code, notes, and snippets.

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