forked from 790hanu/Annex-qr-code-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Number Guessing game.cpp
98 lines (72 loc) · 1.87 KB
/
Number Guessing game.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main()
{
int num1, num2, guess, nguess = 1;
int guess2, nguess2 = 1;
string player1name, player2name;
srand(time(0));
num1 = rand() % 100 + 1;
num2 = rand() % 100 + 1;
// generates random number between 1-100
// printf("random number:%d\n",num);
// PLayers name
cout << "Player 1 please enter your name: ";
getline(cin, player1name);
cout << "Player 2 please enter your name: ";
getline(cin, player2name);
cout << "Player 1 turn" << endl;
cout << "Guess a Random number between 1-100" << endl;
do // loop starts
{
cin >> guess;
if (guess > num1) // if guess is greater than randnumber
{
cout << "Please Enter smaller number than " << guess << endl;
}
else if (guess < num1) // if guess is smaller than the randnumber
{
cout << "please Enter Higher Number than " << guess << endl;
}
else
{
cout << "game over" << endl;
cout << endl;
}
nguess++;
} while (guess != num1);
cout << "Player 2 turn" << endl;
cout << "Guess a Random number between 1-100" << endl;
do // loop starts
{
cin >> guess2;
if (guess2 > num2) // if guess is greater than randnumber
{
cout << "Please Enter smaller number than " << guess2 << endl;
}
else if (guess2 < num2) // if guess is smaller than the randnumber
{
cout << "please Enter Higher Number than " << guess2 << endl;
}
else
{
cout << "game over" << endl;
cout << endl;
}
nguess++;
} while (guess2 != num2);
if (nguess2 > nguess) {
cout << player1name << " --------- won the game!---------" << endl;
}
else if (nguess=nguess2)
{
cout << "--------- Game Draw ---------" << endl;
}
else
{
cout << player2name << " --------- won the game!---------" << endl;
}
return 0;
}