-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.cpp
More file actions
86 lines (57 loc) · 1.46 KB
/
Copy pathgame.cpp
File metadata and controls
86 lines (57 loc) · 1.46 KB
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
#include <iostream>
bool game()
{
int mynum = ((rand() % 100) + 1);
int trys = 0;
std::cout << "----------Number Guessing Game----------" << '\n';
std::cout << "Type 0 at any time to quit!" << '\n';
std::cout << "----------------------------------------" << '\n';
while (true)
{
std::string innumstr;
int innum;
std::cout << "Enter a number (1-100): ";
std::getline(std::cin, innumstr);
innum = std::stoi(innumstr);
if (innum == mynum)
{
std::cout << "You win!" << '\n';
std::cout << "It took you " << trys << " trys!" << '\n';
return true;
}
else if (innum == 0)
{
std::cout << "The number was " << mynum << '\n';
std::cout << "You had " << trys << " trys!" << '\n';
return false;
}
else
{
if (innum > mynum)
{
std::cout << "Lower!" << '\n';
}
else if (innum < mynum)
{
std::cout << "Higher!" << '\n';
}
}
trys += 1;
}
}
int main()
{
srand(time(NULL));
while (game())
{
std::string dostop;
std::cout << "Do you want to play again? (y or n): ";
std::getline(std::cin, dostop);
if (dostop == "n")
{
break;
}
}
std::cout << "Goodbye!" << '\n';
return 0;
}