Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. public class GetAge {
  3.  
  4. public static void main(String[] args) {
  5.  
  6. System.out.println(oldEnough(37));
  7. System.out.println(oldEnough(15));
  8.  
  9. }
  10.  
  11. static boolean oldEnough(int age) {
  12. boolean result = false;
  13.  
  14. if (age >= 21) {
  15. result = true;
  16. }
  17.  
  18. return result;
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement