C++ Codes
Algorithms
Algorithm Analysis in C++
Beginners
Code Snippets
Graphics
Data Structures
File Manipulation
Games
Mathematics
Miscellaneous
Visual C++ Library
C++ > Games sample source codes
Computer picks a random number from 0 to 100, and the user tries
Computer picks a random number from 0 to 100, and the user tries to guess the number. /* HIGH/LOW GAME */ #include
#include
#include
/* This program plays a simple game. */ const int totchan=7; void main() { int number; //the computer's random number int guess; //the user's guess int chances=0,score=0,chanscor; //chanscor stores score for 1 successful chance. char ans; do { clrscr(); chances=score=0; cout<<" Welcome to the High/Low game."; cout<<" I will pick a random number from 0 to 100."; cout<<" You must try to guess the number. "; randomize(); number=(int)(rand()%100); chanscor=100/totchan; //score for each successful chance do { cout<<" What is your guess? (0 to 100) "; cin>>guess; if((guess<0)||(guess>100)) { cout<<"Sorry, but your guess "<
number) { cout<
>ans; }while(ans=='y' || ans=='Y'); }
Privacy Policy
|
Link to Us
|
Links