- #include<iostream.h>
- #include<conio.h>
- void main()
- {
- clrscr();
- int pilih; //deklarasi variabel dengan tipe data int (bilangan bulat)
- cout<<"Masukkan Pilihan = ";
- cin>>pilih;
- if (pilih==1)
- cout<<"Rekayasa Perangkat Lunak";
- else if (pilih==2)
- cout<<"Multimedia";
- else if (pilih==3)
- cout<<"Teknik Komputer dan Jaringan";
- else
- cout<<"Salah masukkan jurusan";
- getch();
- }
Output:
No comments:
Post a Comment