-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell game.cpp
More file actions
58 lines (53 loc) · 965 Bytes
/
shell game.cpp
File metadata and controls
58 lines (53 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <iostream>
#include <ctime>
#include<cstdlib>
using namespace std;
int main()
{
int guess , x, i;
cout << " geuss where is '$'"<< endl << " #-$-#\n";
cout << " enter : "<< endl;
cin >> guess ;
i = time(0);
srand(i);
x = 1 + rand()% 3;
cout << x;
//
if(x==1){
cout << "$-#-#"<< endl;
if(guess==1){
cout <<"nice job you won!"<< endl;
}
if(guess==2){
cout <<"try again"<< endl;
}
if(guess==3){
cout <<"try again"<< endl;
}
}
else if(x==2){
cout << "#-$-#"<< endl;
if(guess==1){
cout <<"try again"<< endl;
}
if(guess==2){
cout <<"nice job you won!"<< endl;
}
if(guess==3){
cout <<"try again"<< endl;
}
}
else if(x==3){
cout << "#-#-$"<< endl;
if(guess==1){
cout <<"try again"<< endl;
}
if(guess==2){
cout <<"try again"<< endl;
}
if(guess==3){
cout <<"nice job you won!"<< endl;
}
}
return 0;
}