Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
A few other things you should be doing && to represent AND in C++ not & [CODE=C++] //What you did else if(answer==false & userGuess>randomNumber){ cout << "You guessed incorrectly,too high!" << endl <<endl; } //What it should be else if(answer==false && userGuess<randomNumber){ cout << "You guessed incorrectly,too high!" << endl …
The End.
bennie22