This is my for loop

int main() {

int limit = 5;
PrintIntro();

for (int i = 1; i <= limit; i++) {
	//get the guess and print it back
	cout << "Your guess was: " << GetGuess() << endl << endl;
}
return 0;

}

This is what I get:

Privacy & Terms