-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
274 lines (214 loc) · 10.4 KB
/
Program.cs
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
using System;
namespace dogs
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hi! Welcome to the dog age calculator! To start, tell us how old you are!");
string myAge = Console.ReadLine().ToLower();
int age;
int dogYears = 7;
bool rightAnswer = false;
//Checks for Int. If not it repeats until it's an int
if (!int.TryParse(myAge, out age))
{
Console.WriteLine("{0} is not an integer", myAge);
rightAnswer = false;
while (rightAnswer == false)
{
Console.WriteLine("Please enter your age as an integer!");
myAge = Console.ReadLine().ToLower();
if (int.TryParse(myAge, out age))
{
rightAnswer = true;
continue;
}
}
}
else
{
rightAnswer = true;
}
//Once answer is an int
if (rightAnswer == true)
{
Console.WriteLine("Would you like to see your age in dog years? (yes/no)");
var myOtherDogAge = (age + 1.5) * dogYears;
var myDogAge = age * dogYears;
var answer = Console.ReadLine().ToLower();
while (answer != "yes" && answer != "no" && answer != "yes/no")
{
Console.WriteLine($"{answer} is invalid. Would you like to see your age in dog years? (yes/no)");
answer = Console.ReadLine().ToLower();
if (answer == "yes" || answer == "no")
{
break;
}
}
//wants age in dog years
if (answer == "yes")
{
Console.WriteLine($"You are {myDogAge} in dog years!");
Console.WriteLine("Would you like to know how old in dog years you will be in 1.5 years? (yes/no)");
string dogAnswer = Console.ReadLine().ToLower();
;
while (dogAnswer != "yes" && dogAnswer != "no" && dogAnswer != "yes/no")
{
Console.WriteLine($"{dogAnswer} is invalid. Would you like to know how old in dog years you will be in 1.5 years? (yes/no)");
dogAnswer = Console.ReadLine().ToLower();
if (dogAnswer == "yes" || dogAnswer == "no")
{
break;
}
}
// wants age in dog years and additional years
if (dogAnswer == "yes")
{
Console.WriteLine($"In 1.5 years you will be {myOtherDogAge}");
Console.WriteLine("Would you like a high 5? (yes/no)");
string highFive = Console.ReadLine().ToLower();
while (highFive != "yes" && highFive != "no" && highFive != "yes/no")
{
Console.WriteLine($"{highFive} is invalid. Would you like a high 5? (yes/no)");
highFive = Console.ReadLine().ToLower();
if (highFive == "yes" || highFive == "no")
{
break;
}
}
// yes to both and then high five question
if (highFive == "yes")
{
Console.WriteLine("*I give you a high 5*");
}
else if (highFive == "no")
{
Console.WriteLine("*I slap you in the face*");
}
else if (highFive == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
//yes to first and no to second now high five question
else if (dogAnswer == "no")
{
Console.WriteLine("Would you like a high 5? (yes/no)");
string highFive = Console.ReadLine().ToLower();
while (highFive != "yes" && highFive != "no" && highFive != "yes/no")
{
Console.WriteLine($"{highFive} is invalid. Would you like a high 5? (yes/no)");
highFive = Console.ReadLine().ToLower();
if (highFive == "yes" || highFive == "no")
{
break;
}
}
if (highFive == "yes")
{
Console.WriteLine("*I give you a high 5*");
}
else if (highFive == "no")
{
Console.WriteLine("*I slap you in the face*");
}
else if (highFive == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
else if (dogAnswer == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
//doesn't want age in dog years now ask about additional age
else if (answer == "no")
{
Console.WriteLine("Ok would you be interested in knowing how old you would be in dog years in 1.5 years? (yes/no)");
string dogAnswer = Console.ReadLine().ToLower();
while (dogAnswer != "yes" && dogAnswer != "no" && dogAnswer != "yes/no")
{
Console.WriteLine($"{dogAnswer} is invalid. would you be interested in knowing how old you would be in dog years in 1.5 years? (yes/no)");
dogAnswer = Console.ReadLine().ToLower();
if (dogAnswer == "yes" || dogAnswer == "no")
{
break;
}
}
if (dogAnswer == "yes")
{
Console.WriteLine($"In 1.5 years you will be {myOtherDogAge}");
Console.WriteLine("Would you like a high 5? (yes/no)");
string highFive = Console.ReadLine().ToLower();
while (highFive != "yes" && highFive != "no" && highFive != "yes/no")
{
Console.WriteLine($"{highFive} is invalid. Would you like a high 5? (yes/no)");
highFive = Console.ReadLine().ToLower();
if (highFive == "yes" || highFive == "no")
{
break;
}
}
if (highFive == "yes")
{
Console.WriteLine("*I give you a high 5*");
}
else if (highFive == "no")
{
Console.WriteLine("*I slap you in the face*");
}
else if (highFive == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
else if (dogAnswer == "no")
{
Console.WriteLine("Would you like a high 5? (yes/no)");
string highFive = Console.ReadLine().ToLower();
while (highFive != "yes" && highFive != "no" && highFive != "yes/no")
{
Console.WriteLine($"{highFive} is invalid. Would you like a high 5 (yes/no)");
highFive = Console.ReadLine().ToLower();
if (highFive == "yes" && highFive == "no")
{
break;
}
}
if (highFive == "yes")
{
Console.WriteLine("*I give you a high 5*");
}
else if (highFive == "no")
{
Console.WriteLine("*I slap you in the face*");
}
else if (highFive == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
else if (dogAnswer == "yes/no"){
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
else if (answer == "yes/no")
{
Console.WriteLine("You are an idiot and can not be trusted with this knowledge!");
System.Environment.Exit(1);
}
}
/*Console.WriteLine($"You are {age} old in human years!");
Console.WriteLine($"That makes you {myDogAge} in dog years!");
Console.WriteLine($"If you are curious how old you will be in dog years in 1.5 years, you will be {myOtherDogAge}!"); */
}
}
}