| | |
Random Number Guessing Game
Please support our C++ advertiser: Intel Parallel Studio Home
This is a program I created a couple of weeks ago for class using DevC++ compiler. THis program allows the user 20 tries to guess a number between 1 and 100. It keeps track of wins and losses and offfers the option to continue or quit, displaying game stats.
//Kerri Byrd //May 28, 2005 //C9A4P447 #include <iostream> #include <string> #include <cstdlib> #include <cctype> #include <ctime> #include <conio.h> using namespace std; int main () { int wins = 0; int losses = 0; int tries = 0; int guess; unsigned int number; char playAgain = 'Y'; srand((unsigned)time(NULL)); number = rand() % 101; while (toupper(playAgain) == 'Y') { while (tries < 21) { cout << "Enter a number between 0 and 100: "; cin >> guess; if (guess == number) { wins = wins + 1; break; } else tries = tries + 1; } if (tries > 20) { losses = losses + 1; cout << "Try Again "; } else cout << "You won! "; cout << "Want to play again?"; cin >> playAgain; } cout << "Your total wins: " << wins; cout << " Your total losses: " << losses; getch(); return 0; }
0
•
•
•
•
If I can go back and get it to work, I will edit and add some code that will make it a bit more interesting.....
Similar Threads
- GUI Number Guessing Game Problem (Java)
- Number guessing game problem (C++)
- Number Guessing game problem (C++)
- Code Snippet: Random Number Guessing Game (C)
- Random guessing game (C++)
| Thread Tools | Search this Thread |
Tag cloud for C++
api application array arrays assignment beginner binary bitmap c++ c/c++ calculator char char* class classes code coding compile compiler console conversion convert count data database delete developer display dll email encryption error file forms fstream function functions game generator getline givemetehcodez graph homeworkhelper iamthwee ifstream image input int java lazy lib loop looping loops map math matrix memory multidimensional multiple newbie news node number output parameter pointer problem program programming project proxy python random read recursion recursive reference return sort sorting string strings struct template templates text tree url variable vector video visual visualstudio win32 windows winsock word wordfrequency wxwidgets



