Advertisement
ni032mas

Untitled

Jul 22nd, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. class A {
  2.     public static void main (String []args){
  3.         int x = 3;
  4.         if (x > 2) {
  5.             System.out.print("a");
  6.             while (x > 0){
  7.                 x = x - 1;
  8.                 System.out.print("-");
  9.                 if (x == 2) {
  10.                     System.out.print("b c");
  11.                 }
  12.                 if (x == 1) {
  13.                     System.out.print("d");
  14.                     x = x - 1;
  15.                 }
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement