advictoriam

Untitled

Jan 8th, 2019
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. /**
  2.    A program to draw a parallelogram,
  3.       enclosing the word "Parallelogram"
  4. */
  5.  
  6. public class Parallelogram
  7. {
  8.    public static void main(String[] args)
  9.    {
  10.       System.out.println("      ______________________");
  11.       System.out.println("     /                     /");
  12.       System.out.println("    /    Parallelogram    / ");
  13.       System.out.println("   /                     /  ");
  14.       System.out.println("  /_____________________/   ");
  15.    }
  16. }
Add Comment
Please, Sign In to add comment