Advertisement
Guest User

Untitled

a guest
May 8th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. package tuts20To29;
  2.  
  3. class tut21 {
  4. public static void main() {
  5. int age = 21;
  6. System.out.println(age > 50 ? "You are old!" : "You are young!");
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement