Advertisement
jaredt17

Chapter5Exercise3

Oct 20th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public class exersises
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         int x = 25;
  6.         if ( x <= 10)
  7.         {
  8.             System.out.println("1");
  9.         }
  10.         else if ( x <= 100)
  11.         {
  12.             System.out.println("2");
  13.         }
  14.         else if ( x <= 1000)
  15.         {
  16.             System.out.println("3");
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement