-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogtest0.c
34 lines (26 loc) · 874 Bytes
/
progtest0.c
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
#include <stdio.h>
int main(int argc, char * argv[]) {
float a;
printf("ml' nob:\n");
scanf("%f", & a);
if (a != 1 && a != 2 && a != 3 && a != 4 && a != 5) {
printf("luj");
} else {
if (a == 1) {
printf("Qapla'\nnoH QapmeH wo' Qaw'lu'chugh yay chavbe'lu' 'ej wo' choqmeH may' DoHlu'chugh lujbe'lu'.\n");
}
if (a == 2) {
printf("Qapla'\nQu' buSHa'chugh SuvwI', batlhHa' vangchugh, qoj matlhHa'chugh, pagh ghaH SuvwI''e'.\n");
}
if (a == 3) {
printf("Qapla'\nqaStaHvIS wa' ram loS SaD Hugh SIjlaH qetbogh loD.\n");
}
if (a == 4) {
printf("Qapla'\nHa'DIbaH DaSop 'e' DaHechbe'chugh yIHoHQo'.\n");
}
if (a == 5) {
printf("Qapla'\nleghlaHchu'be'chugh mIn lo'laHbe' taj jej.\n");
}
}
return 0;
}