Advertisement
john9912

sak

Sep 19th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. package Firstpackage;
  2.  
  3. import javax.swing.JOptionPane;
  4.  
  5. public class Age {
  6.  
  7. public static void main(String[] args) {
  8. int pris = 10;
  9. String b = JOptionPane.showInputDialog(null,"Ålder: ");
  10. int a = Integer.parseInt(b);
  11. /* if (a > 15 && a < 65)
  12. pris = 10;
  13. else
  14. pris = 5;*/
  15. if (!(a < 15 || a > 65))
  16. pris = 10;
  17. else
  18. pris = 5;
  19. JOptionPane.showMessageDialog(null, "Priset för dig är " + pris + " kr");
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement