-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapes.java
18 lines (17 loc) · 998 Bytes
/
shapes.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*Java program that displays a box, an oval, an arrow and a diamond using
asterisks(*).*/
public class shapes {
public static void main (String [] args) {
System.out.println ("This Application Displays A Box, An Oval, An Arrow"
+ " And A Diamond Using Asterisks (*)");
System.out.print ("********* *** * * \n");
System.out.print ("* * * * *** * * \n");
System.out.print ("* * * * ***** * * \n");
System.out.print ("* * * * * * * \n");
System.out.print ("* * * * * * * \n");
System.out.print ("* * * * * * * \n");
System.out.print ("* * * * * * * \n");
System.out.print ("* * * * * * * \n");
System.out.print ("********* *** * * \n");
}
}