Vous êtes sur la page 1sur 2

/* high/low game */

#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
/*
this program plays a simple game.the computer picks a random number
from
0 to 100, and the user tries to guess the number.
*/
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 "<<guess<<"must be from 0 to 100.";
}
else if(guess < number)
{
cout<<guess<<" is low.try a higher number.";
}
else if(guess > number)
{
cout<<guess<<" is high.try a lower number.";
}
else //if correct number is guessed
{ //number is correct, and the "do" loop will end below
cout<<guess<<" is correct. congratulations!";
score=chanscor*(totchan-chances); //score calculated for number of
chances left
cout<<"
your score is "<<score<<endl;
break;
}
chances++;
if(guess!=number)
cout<<"

now you have "<<totchan-chances<<"chances left."<<endl;


if(chances==totchan)
{ cout<<"

only "<<totchan<<"chances are allowed.better luck next


time";
cout<<"
the actual number was "<<number<<endl;
break;
}
}while (guess!=number);
cout<<"

thank you for playing high/low!";


cout<<"want to play it again? (y/n)...";
cin>>ans;
}while(ans=='y' || ans=='y');
}

Vous aimerez peut-être aussi