Skip to content

Instantly share code, notes, and snippets.

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