advictoriam

Untitled

Jan 8th, 2019
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. /**
  2.    A program to draw a picture with a tree and bush
  3. */
  4.  
  5. public class TreeBush
  6. {
  7.    public static void main(String[] args)
  8.    {
  9.     System.out.println("       #");
  10.     System.out.println("     ####");
  11.     System.out.println("   #######");
  12.     System.out.println("   ########");
  13.     System.out.println("    ##||# #       ###");
  14.     System.out.println("    # ||         ######");
  15.     System.out.println(" _____||_________ ####____");
  16.    }
  17. }
Add Comment
Please, Sign In to add comment