Advertisement
Guest User

Untitled

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