TURBO C | CONTOH PROGRAM SWITCH CASE

By sulthan on Sunday, July 30, 2017

Contoh Switch Case
Sebuah Universitas untuk menentukan nama jurusan memberikan sebuah kode yaitu
Kode
A.    Teknik Informatika
B.    Sistem Informasi
C.    Manajemen Informatika
D.   Design

PROGRAM

#include<stdio.h>
Main()
{
Char nama[20],ket[30],kode;
Clrscr();
Printf(“Masukkan Nama Mahasiswa : “); gets(nama);
Printf(“Pilih Kode [A/B/C/D] : “); kode=getche();
Switch(kode)
{
Case ‘A’           :{
Strcpy(ket,”Teknik Informatika”);
Break;
}
Case ‘B’           :{
Strcpy(ket,”Sistem Informasi”);
Break;
}
Case ‘C’           :{
Strcpy(ket,”Management Informatika”);
Break;
}
Case ‘D’           :{
Strcpy(ket,”Design”);
Break;
}
}
Printf(“Nama Mahasiswa : %s\n”,nama);
Printf(“Kode Jurusan : %c\n”,kode);
Printf(“Nama Jurusan : %s\n”,ket);
Getch();
}


ALGORITMA


&quot;what is internet in hindi&quot; || internet kya hai (in hindi)

What is internet in hindi ||history of internet in hindi "What is internet in hindi", today we all are trying to know about what i...