Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- main(){
- int kdhari;
- cout<<"Masukan Kode hari ( 1 - 7 ): ";
- cin>>kdhari;
- switch (kdhari){
- case 1 :
- cout<<"Senin";
- break;
- case 2 :
- cout<<"Selasa";
- break;
- case 3 :
- cout<<"Rabu";
- break;
- case 4 :
- cout<<"Kamis";
- break;
- case 5 :
- cout<<"Jumat";
- break;
- case 6 :
- cout<<"Sabtu";
- break;
- case 7 :
- cout<<"Minggu";
- break;
- default:
- cout<<"Kode tidak valid";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment