-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwow.cpp
More file actions
40 lines (34 loc) · 710 Bytes
/
Copy pathwow.cpp
File metadata and controls
40 lines (34 loc) · 710 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
#include <iostream>
#include <cstdlib>
#include <string>
void quiz1();
int main()
{
std::system("clear");
std::string yesorno;
std::cout << "Arr0ws silly quiz" << std::endl;
std::cout << "Do you want to play it? [y][n]: ";
std::cin >> yesorno;
if (yesorno == "y")
{
quiz1();
} else
{
std::cout << "Nuh uh" << std::endl;
quiz1();
}
return 0;
}
void quiz1()
{
std::string answer;
std::cout << "is 2+2 = 22? [y][n]:" << std::endl;
std::cin >> answer;
if (answer == "y")
{
std::cout << "You won!" << std::endl;
} else if (answer == "n")
{
std::cout << "fuck you" << std::endl;
}
}