Advertisement
Guest User

Untitled

a guest
May 4th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class MyClass{
  2.  
  3. public static void main(String[]args) {
  4.  
  5. int Grade = 60;
  6. switch(Grade)
  7. {
  8. case 10 :
  9. System.out.println("IG");
  10. break;
  11. case 30 :
  12. System.out.println("VG");
  13. break;
  14. case 60 :
  15. System.out.println("MVG");
  16. break;
  17. }
  18.  
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement