Advertisement
ipwxy

Apple.java - James

Jul 3rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. public class Apple {
  2.  
  3.     public static void main(String[] args) {
  4.         int age = 1;
  5.         int sweetnesslevel = 10;
  6.  
  7.         if (age > sweetnesslevel) {
  8.            
  9.         } else {
  10.            
  11.         }
  12.  
  13.         if (age > sweetnesslevel) {
  14.             // execute some codeted to
  15.         } else {
  16.             if (age < sweetnesslevel) {
  17.  
  18.             }
  19.         }
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement