-
Notifications
You must be signed in to change notification settings - Fork 0
/
6_4_1_uygulama.c
37 lines (34 loc) · 901 Bytes
/
6_4_1_uygulama.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
35
36
37
/**<
*6_4_1_uygulama.c
*Bu program C dilinde: Bir id değeri alır ve eğer doğru id girildiyse
*İsmi ile birlikte Hoş geldiniz yazısını konsola bastırır.
*@authr Neşet Aydın
25.05.2020
*Bu Program uygulama 6.4.1 için yazılan programın son halidir.
*Videoya linkten ulaşabilirsiniz: //https://youtu.be/K0aKxd7UNe4
*/
#include <stdio.h>
#include "stdlib.h"
/*bir id al, sorgula eğer yanlışsa tekrar döngüye gir, değilse hoş geldiniz yazdır programı kapat.*/
int main(){
int idGiris;
do{
printf("Lutfen Id giriniz;");
scanf("%d",&idGiris);
switch(idGiris){
case 1: printf("Ali Bey");
break;
case 2: printf("Veli Bey");
break;
case 3: printf("Fatma Hanim");
break;
case 4: printf("Ayse Hanim");
break;
default:
printf("Yanlis giris yaptiniz\n");
idGiris=0;
}
}while(!idGiris); //Koşul Yanlış ise Sorgu Doğru
printf(" Hos geldiniz");
return 0;
}