Advertisement
Guest User

Untitled

a guest
Apr 9th, 2017
502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3. int number = 104;
  4. int bot = 0;
  5. int top = 100;
  6.  
  7. if(rangeCheck(number, bot, top))
  8. {
  9. JOptionPane.showMessageDialog(null,"Valid");
  10. }
  11. else
  12. {
  13. JOptionPane.showMessageDialog(null,"Invalid");
  14. }
  15.  
  16.  
  17. }
  18.  
  19. public static boolean rangeCheck(int num, int min, int max)
  20. {
  21. return num > min && num < max;
  22. }
  23.  
  24.  
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement