Posts
 
Reputation
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
~148 People Reached
Favorite Forums
Favorite Tags
c++ x 2

1 Posted Topic

Member Avatar for StaticX

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 …

Member Avatar for bennie22
0
148

The End.