guess

The following program will act as a guessing game in which the user has eight tries to guess a randomly generated number. The program will tell the user each time whether he guessed high or low:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdlib.h>
#include <iostream>
using namespace std;

int main() { 
int numberand()%100; 
int guess=-1; 
int tcount=0; 
while(guess!=number && trycount<8) { 
cout<<"Please enter a guess: "; 
cin>>guess; 
if(guess<number) 
cout<<"Too low"<<endl;
if(guess>number)
cout<<"Too high"<<endl; 
count++; 
} 
if(guess==number) 
cout<<"You guessed the number"; 
else cout<<"Sorry, the number was: "<<number;
 return 0; }


i keep getting debug errors
Topic archived. No new replies allowed.