int main () {
printIntro();
for (int count = 1; count <= 5; count++) {
GetGuessAndPrintBack();
cout << endl;
}
return 0;
}
This was my first attempt at for loops from the bulls and cows lesson.
int main () {
printIntro();
for (int count = 1; count <= 5; count++) {
GetGuessAndPrintBack();
cout << endl;
}
return 0;
}
This was my first attempt at for loops from the bulls and cows lesson.