-
Notifications
You must be signed in to change notification settings - Fork 0
/
HarshQuesAns.txt
113 lines (86 loc) · 2.55 KB
/
HarshQuesAns.txt
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include<iostream>
using namespace std;
int main(){
char ans, ans1, ans2;
cout<<"Are you a moron?"<<endl;
cout<<"a)Yes b)No c)Well yes, but actually no. d)Hard to decide."<<endl;
cin>>ans;
switch(ans)
{
case 'a':
cout<<"Sol. Damn, you know yourself"<<endl;
cout<<" "<<endl;
cout<<"Did you fart?"<<endl;
cout<<"a)yes b)no c)something something d)alien did"<<endl;
break;
case 'b':
cout<<"Sol. You sucks at judgement"<<endl;
cout<<" "<<endl;
cout<<"Did you fart?"<<endl;
cout<<"a)yes b)no c)something something d)alien did"<<endl;
break;
case 'c':
cout<<"Sol. Ah, I see you a man of culture as well!"<<endl;
cout<<" "<<endl;
cout<<"Did you fart?"<<endl;
cout<<"a)yes b)no c)something something d)alien did"<<endl;
break;
case 'd':
cout<<"Sol. You actually are a moron"<<endl;
cout<<" "<<endl;
cout<<"Did you fart?"<<endl;
cout<<"a)yes b)no c)something something d)alien did"<<endl;
break;
}
cin>>ans1;
switch(ans1){
case 'a':
cout<<"Sol. You are a honest person!"<<endl;
cout<<" "<<endl;
cout<<"Whats your favorite color?"<<endl;
cout<<"a)Red b)Blue c)Black d)I don't know"<<endl;
break;
case 'b':
cout<<"Sol. You are a bad liar!"<<endl;
cout<<" "<<endl;
cout<<"Whats your favorite color?"<<endl;
cout<<"a)Red b)Blue c)Black d)I don't know"<<endl;
break;
case 'c':
cout<<"Sol. Don't ever say that to your girlfriend"<<endl;
cout<<" "<<endl;
cout<<"Whats your favorite color?"<<endl;
cout<<"a)Red b)Blue c)Grey d)I don't know"<<endl;
break;
case 'd':
cout<<"Sol. ....and nobody asked that!"<<endl;
cout<<" "<<endl;
cout<<"Whats your favorite color?"<<endl;
cout<<"a)Red b)Blue c)Black d)I don't know"<<endl;
break;
}
cin>>ans2;
switch(ans2){
case 'a':
cout<<"Sol. Indeed, you are a psychopath"<<endl;
cout<<" "<<endl;
cout<<"The end, hope your time is ruined...."<<endl;
break;
case 'b':
cout<<"Sol. Congrats, you are boring!"<<endl;
cout<<" "<<endl;
cout<<"The end, hope your time is ruined...."<<endl;
break;
case 'c':
cout<<"Sol. Are you even human? "<<endl;
cout<<" "<<endl;
cout<<"The end, hope your time is ruined...."<<endl;
break;
case 'd':
cout<<"Sol. Yeah, you are not allowed to know."<<endl;
cout<<" "<<endl;
cout<<"The end, hope your time is ruined...."<<endl;
break;
}
return 0;
}