Advertisement
Guest User

Untitled

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