-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.cpp
More file actions
303 lines (303 loc) · 11.8 KB
/
1.cpp
File metadata and controls
303 lines (303 loc) · 11.8 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
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
//#include<iostream>
//#include<cmath>
//#include<fstream>
//#include<ctime>
//#include<cstdlib>
//#include<string>
//
//using namespace std;
//int feedback(int difference)
//{
// if (difference == 0)
// {
// return 0;
// }
// else if (difference > 40)
// {
// return 1;
// }
// else if (difference > 20 && difference < 40)
// {
// return 2;
// }
// else if (difference > 10 && difference < 20)
// {
// return 3;
// }
// else if (difference < 10)
// {
// return 4;
// }
// return -1;
//}
//
//
//int main() {
//
// cout << "*********************************************************************** **************************************************************************" << endl;
// cout << "**** MUHAMMAD WALEED ************************************************ ****************************************************** RAVEHA MUNIR ****" << endl;
// cout << "**** 24L-6023 ***************************************************** NUMGUESS ******************************************************** 24L-6004 ****" << endl;
// cout << "**** 1B-1 ******************************************************* ********************************************************** 1B-1 ****" << endl;
// cout << "*************************************************************** Powered By ******************************************************************" << endl;
// cout << "************************************************************* WARAV ****************************************************************" << endl;
// cout << "***************************************************************************************************************************************************" << endl << endl;
// cout << "------------------------------------------------------------------[ WELCOME ]----------------------------------------------------------------------" << endl;
// string name_of_user, level;
// cout << "Please Enter your name : ";
// getline(cin, name_of_user);
// cout << endl;
// cout << "Dear " << name_of_user << ", please select the Difficulty level you want to play from below." << endl << endl;
// cout << "-------------------------------------------------------------SELECT DIFFICULTY LEVEL---------------------------------------------------------------" << endl << endl << endl;
// cout << "\t\t\t" << "1. Easy" << "\t\t\t\t\t" << " 2. Medium" << "\t\t\t\t\t" << "3. Hard" << endl << endl << endl;
// cout << "Enter the difficulty level (easy, medium, hard) you want to play:";
// getline(cin, level);
// if (level != "easy" && level != "medium" && level != "hard")
// {
// while (level != "easy" && level != "medium" && level != "hard")
// {
// cout << endl << "\t\t\t\t\t\t\t" << " !!! INVALIDE ENTRY !!!" << endl << endl;
// cout << "Please Re-enter the difficulty level in this form (easy, medium, hard), then GAME will start: ";
// cin >> level;
// continue;
// }
// }
// if (level == "easy")
// {
//
// srand(time(0));
// int random_no = rand() % 50 + 1;
// cout << random_no;
// bool correct = false;
//
// int num, attempts_left = 12, hints_used = 0, score;
//
// for (int attempts = 1; attempts <= 12; attempts++)
// {
// attempts_left--;
//
// char hint_and_attempt;
// cout << "-------------------" << endl;
// cout << "Enter H for hint" << endl;
// cout << "Enter A for attempt" << endl;
// cout << "-------------------" << endl;
// cin >> hint_and_attempt;
//
// if ((hint_and_attempt == 'H' || hint_and_attempt == 'h') && (attempts > 0))
// {
// cout << ((random_no % 2 == 0) ? "The number is Even" : "The number is Odd") << ". ";
// cout << ((random_no > (50 / 2)) ? "The number is in Upper half." : "The number is in Lower half.");
// hints_used++;
// cout << endl;
// }
//
// else if ((hint_and_attempt == 'A' || hint_and_attempt == 'a'))
// {
//
// cout << "Select your number between 1 and 50 : ";
// cin >> num;
// int difference_value = abs(random_no - num);
//
// switch (feedback(difference_value))
// {
// case 0:
// cout << "Correct! You have guessed the number" << endl;
// score = ((attempts_left * 10) - (hints_used * 5));
// cout << "Your final score is : " << score << endl;
//
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// correct = true;
// return 0;
// case 1:
// cout << "Way off " << endl;
// break;
// case 2:
// cout << "Still quite far " << endl;
// break;
// case 3:
// cout << "You're getting close!" << endl;
// break;
// case 4:
// cout << "Almost there" << endl;
// break;
// default:
// cout << "Usexpected case" << endl;
// break;
// }
// }
// }
//
// if (!correct)
// {
// cout << "The correct number was: " << random_no << endl;
// score = 0;
// cout << "Your final score is : " << score << endl;
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// }
// }
//
// // For Medium Level
//
// else if (level == "medium")
// {
//
// srand(time(0));
// int random_no = rand() % 50 + 1;
// cout << random_no;
// bool correct = false;
//
// int num, attempts_left = 10, hints_used = 0, score;
//
// for (int attempts = 1; attempts <= 10; attempts++)
// {
// attempts_left--;
//
// char hint_and_attempt;
// cout << "-------------------" << endl;
// cout << "Enter H for hint" << endl;
// cout << "Enter A for attempt" << endl;
// cout << "-------------------" << endl;
// cin >> hint_and_attempt;
//
// if ((hint_and_attempt == 'H' || hint_and_attempt == 'h') && (attempts > 0))
// {
// cout << ((random_no % 2 == 0) ? "The number is Even" : "The number is Odd") << ". ";
// cout << ((random_no > (50 / 2)) ? "The number is in Upper half." : "The number is in Lower half.");
// hints_used++;
// cout << endl;
// }
//
// else if ((hint_and_attempt == 'A' || hint_and_attempt == 'a'))
// {
//
// cout << "Select your number between 1 and 50 : ";
// cin >> num;
// int difference_value = abs(random_no - num);
//
// switch (feedback(difference_value))
// {
// case 0:
// cout << "Correct! You have guessed the number" << endl;
// score = ((attempts_left * 10) - (hints_used * 5));
// cout << "Your final score is : " << score << endl;
//
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// correct = true;
// return 0;
// case 1:
// cout << "Way off " << endl;
// break;
// case 2:
// cout << "Still quite far " << endl;
// break;
// case 3:
// cout << "You're getting close!" << endl;
// break;
// case 4:
// cout << "Almost there" << endl;
// break;
// default:
// cout << "Usexpected case" << endl;
// break;
// }
// }
// }
//
// if (!correct)
// {
// cout << "The correct number was: " << random_no << endl;
// score = 0;
// cout << "Your final score is : " << score << endl;
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// }
// }
//
// // For Difficult Level
//
// else if (level == "hard")
// {
//
// srand(time(0));
// int random_no = rand() % 200 + 1;
// cout << random_no;
// bool correct = false;
//
// int num, attempts_left = 8, hints_used = 0, score;
//
// for (int attempts = 1; attempts <= 8; attempts++)
// {
// attempts_left--;
//
// char hint_and_attempt;
// cout << "-------------------" << endl;
// cout << "Enter H for hint" << endl;
// cout << "Enter A for attempt" << endl;
// cout << "-------------------" << endl;
// cin >> hint_and_attempt;
//
// if ((hint_and_attempt == 'H' || hint_and_attempt == 'h') && (attempts > 0))
// {
// cout << ((random_no % 2 == 0) ? "The number is Even" : "The number is Odd") << ". ";
// cout << ((random_no > (50 / 2)) ? "The number is in Upper half." : "The number is in Lower half.");
// hints_used++;
// cout << endl;
// }
//
// else if ((hint_and_attempt == 'A' || hint_and_attempt == 'a'))
// {
//
// cout << "Select your number between 1 and 50 : ";
// cin >> num;
// int difference_value = abs(random_no - num);
//
// switch (feedback(difference_value))
// {
// case 0:
// cout << "Correct! You have guessed the number" << endl;
// score = ((attempts_left * 10) - (hints_used * 5));
// cout << "Your final score is : " << score << endl;
//
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// correct = true;
// return 0;
// case 1:
// cout << "Way off " << endl;
// break;
// case 2:
// cout << "Still quite far " << endl;
// break;
// case 3:
// cout << "You're getting close!" << endl;
// break;
// case 4:
// cout << "Almost there" << endl;
// break;
// default:
// cout << "Usexpected case" << endl;
// break;
// }
// }
// }
//
// if (!correct)
// {
// cout << "The correct number was: " << random_no << endl;
// score = 0;
// cout << "Your final score is : " << score << endl;
// cout << "=============================" << endl;
// cout << "*GAME OVER*" << endl;
// cout << "=============================" << endl;
// }
// }
//
// return 0;
//}