-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyFirstDrawing.java
More file actions
23 lines (21 loc) · 1.35 KB
/
MyFirstDrawing.java
File metadata and controls
23 lines (21 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class MyFirstDrawing {
public static void main(String[] args) {
System.out.println(" _________ .-------------------. ");
System.out.println(":______.-': : .--------------. : ");
System.out.println("| ______ | | : : | ");
System.out.println("|:______B:| | | Little Error: | | ");
System.out.println("|:______B:| | | | | ");
System.out.println("|:______B:| | | Power not | | ");
System.out.println("| | | | found. | | ");
System.out.println("|:_____: | | | | | ");
System.out.println("| == | | : : | ");
System.out.println("| O | : ---------------- : ");
System.out.println("| o | : ---...______...--- ");
System.out.println("| o |-._.-i___//' \\._ ");
System.out.println("| -.____o_| -. -...______...-' -._ ");
System.out.println(":_________: .____________________ -.___--.-. ");
System.out.println(" .eeeeeeeeeeeeeeeeeeeee... :___:");
System.out.println(" fsc .eeeeeeeeeeeeeeeeeeeeeeeeee. ");
System.out.println(" :____________________________:");
}
}