Guest User

Untitled

a guest
Mar 3rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2.  
  3. public class Lab03 {
  4. public static void main(String[] args){
  5.  
  6. JOptionPane.showInputDialog(null, "Enter number of cups purchased: ", JOptionPane.QUESTION_MESSAGE);
  7. int cups;
  8. cups = 0;
  9.  
  10. switch(cups){
  11. case 0:
  12. JOptionPane.showMessageDialog(null,"You have earned 0 points.");
  13. break;
  14. case 1:
  15. JOptionPane.showMessageDialog(null,"You have earned 5 points.");
  16. break;
  17. case 2:
  18. JOptionPane.showMessageDialog(null,"You have earned 15 points.");
  19. break;
  20. case 3:
  21. JOptionPane.showMessageDialog(null,"You have earned 30 points.");
  22. break;
  23. default:
  24. JOptionPane.showMessageDialog(null,"You've entered a negative value.");
  25. break;
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment