Gloryaa

4_1

Sep 19th, 2022
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. main(){
  5.  
  6. int kdhari;
  7.  
  8. cout<<"Masukan Kode hari ( 1 - 7 ): ";
  9. cin>>kdhari;
  10. switch (kdhari){
  11. case 1 :
  12. cout<<"Senin";
  13. break;
  14. case 2 :
  15. cout<<"Selasa";
  16. break;
  17. case 3 :
  18. cout<<"Rabu";
  19. break;
  20. case 4 :
  21. cout<<"Kamis";
  22. break;
  23. case 5 :
  24. cout<<"Jumat";
  25. break;
  26. case 6 :
  27. cout<<"Sabtu";
  28. break;
  29. case 7 :
  30. cout<<"Minggu";
  31. break;
  32. default:
  33. cout<<"Kode tidak valid";
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment