-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlgs2022.cpp
299 lines (219 loc) · 7.59 KB
/
lgs2022.cpp
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
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Turkish");
double tur_d, mat_d, fen_d, ink_d, din_d, ing_d;
double tur_y, mat_y, fen_y, ink_y, din_y, ing_y;
double tur_b, mat_b, fen_b, ink_b, din_b, ing_b;
double tur_n, mat_n, fen_n, ink_n, din_n, ing_n;
double tur_p, mat_p, fen_p, ink_p, din_p, ing_p;
double const tur_k = 3.929323, mat_k = 4.941955, fen_k = 3.713158, ink_k = 1.755714, din_k = 1.666466, ing_k = 1.483233;
// Türkçe
while (true) {
cout << "Türkçe" << endl;
cout << "------" << endl;
cout << "Doğru : ";
cin >> tur_d;
if (tur_d > 20) {
cout << "Geçerli bir diğer giriniz!" << endl;
continue;
};
if (tur_d <= 20) {
cout << "Yanlış: ";
cin >> tur_y;
if (tur_y > 20 || tur_d + tur_y > 20) {
cout << "Geçerli bir diğer giriniz!" << endl;
continue;
};
if (tur_y <= 20 && tur_d + tur_y <= 20) {
tur_b = 20 - (tur_d + tur_y);
cout << "Boş: " << tur_b << endl;
tur_n = tur_d - (tur_y / 3);
cout << "Net: " << tur_n << endl;
tur_p = tur_n * tur_k;
cout << endl;
break;
};
};
};
// Matematik
while (true) {
cout << "Matematik" << endl;
cout << "---------" << endl;
cout << "Doğru : ";
cin >> mat_d;
if (mat_d > 20) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (mat_d <= 20) {
cout << "Yanlış: ";
cin >> mat_y;
if (mat_y > 20 || mat_d + mat_y > 20) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (mat_y <= 20 && mat_d + mat_y <= 20) {
mat_b = 20 - (mat_d + mat_y);
cout << "Boş: " << mat_b << endl;
mat_n = mat_d - (mat_y / 3);
cout << "Net: " << mat_n << endl;
mat_p = mat_n * mat_k;
cout << endl;
break;
};
};
};
// Fen Bilimleri
while (true) {
cout << "Fen Bilimleri" << endl;
cout << "-------------" << endl;
cout << "Doğru : ";
cin >> fen_d;
if (fen_d > 20) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (fen_d <= 20) {
cout << "Yanlış: ";
cin >> fen_y;
if (fen_y > 20 || fen_d + fen_y > 20) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (fen_y <= 20 && fen_d + fen_y <= 20) {
fen_b = 20 - (fen_d + fen_y);
cout << "Boş: " << fen_b << endl;
fen_n = fen_d - (fen_y / 3);
cout << "Net: " << fen_n << endl;
fen_p = fen_n * fen_k;
cout << endl;
break;
};
};
};
// TC İnklap Tarihi ve Atatürkçülük
while (true) {
cout << "TC İnklap Tarihi ve Atatürkçülük" << endl;
cout << "--------------------------------" << endl;
cout << "Doğru : ";
cin >> ink_d;
if (ink_d > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (ink_d <= 10) {
cout << "Yanlış: ";
cin >> ink_y;
if (ink_y > 10 || ink_d + ink_y > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (ink_y <= 10 && ink_d + ink_y <= 10) {
ink_b = 10 - (ink_d + ink_y);
cout << "Boş: " << ink_b << endl;
ink_n = ink_d - (ink_y / 3);
cout << "Net: " << ink_n << endl;
ink_p = ink_n * ink_k;
cout << endl;
break;
};
};
};
// Din Kültürü ve Ahlak Bilgisi
while (true) {
cout << "Din Kültürü ve Ahlak Bilgisi" << endl;
cout << "----------------------------" << endl;
cout << "Doğru : ";
cin >> din_d;
if (din_d > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (din_d <= 10) {
cout << "Yanlış: ";
cin >> din_y;
if (din_y > 10 || din_d + din_y > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (din_y <= 10 && din_d + din_y <= 10) {
din_b = 10 - (din_d + din_y);
cout << "Boş: " << din_b << endl;
din_n = din_d - (din_y / 3);
cout << "Net: " << din_n << endl;
din_p = din_n * din_k;
cout << endl;
break;
};
};
};
// İngilizce
while (true) {
cout << "İngilizce" << endl;
cout << "---------" << endl;
cout << "Doğru : ";
cin >> ing_d;
if (ing_d > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (ing_d <= 10) {
cout << "Yanlış: ";
cin >> ing_y;
if (ing_y > 10 || ing_d + ing_y > 10) {
cout << "Geçerli bir değer giriniz!" << endl;
continue;
};
if (ing_y <= 10 && ing_d + ing_y <= 10) {
ing_b = 10 - (ing_d + ing_y);
cout << "Boş: " << ing_b << endl;
ing_n = ing_d - (ing_y / 3);
cout << "Net: " << ing_n << endl;
ing_p = ing_n * ing_k;
cout << endl;
break;
};
};
};
// Puan Hesaplama
double puan = tur_p + mat_p + fen_p + ink_p + din_p + ing_p + 200;
if (puan > 500) {
puan = 500;
};
if (puan < 100) {
puan = 100;
};
cout << "Aldığınız Puan: " << puan;
cout << endl;
cout << endl;
// Girebileceğimiz Okulları Belirleme
int i, j, sayac = 0;
string okullar[10] = {"İstanbul Erkek", "Galatasaray", "Kabataş", "Beşiktaş Anadolu", "Çapa Fen", "Sakıp Sabancı", "Pertevniyal", "Beşiktaş Atatürk Anadolu", "Cağaloğlu", "Vefa"};
double puanlar[10] = { 496, 491, 488, 483, 478, 473, 468, 463, 458, 453 };
for (j = 0; j < 10; j++) {
if (puanlar[j] <= puan) {
sayac += 1;
};
if (puanlar[j] > puan) {
continue;
};
};
if (sayac > 0) {
cout << "Aşağıdaki listede bulunan " << sayac << " okula girebilirsiniz:" << endl;
cout << "--------------------------------------------------" << endl;
for (i = 0; i < 10; i++) {
if (puanlar[i] <= puan) {
cout << okullar[i] << " - " << puanlar[i] << endl;
};
if (puanlar[i] > puan) {
continue;
};
};
};
if (sayac == 0) {
cout << "Aldığınız puan ile girebileceğiniz bir okul bulunmamaktadır." << endl;
};
system("PAUSE");
return 0;
}