-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJainA_Assignment.java
More file actions
45 lines (31 loc) · 1.23 KB
/
JainA_Assignment.java
File metadata and controls
45 lines (31 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Jain Aarush
// February 3rd, 2020
// Assignment 1: Face And Name
// ICS3U Mrs.Strelkovska
class JainA_Assignment {
public static void main(String[] args) {
// Start of Bart Simpson face
System.out.println(" |\\/\\/\\/|");
System.out.println(" | |");
System.out.println(" | |");
System.out.println(" | (o)(o)");
System.out.println(" C _)");
System.out.println(" | ,___|");
System.out.println(" | /");
System.out.println(" /____\\");
System.out.println(" / \\\n\n\n");
// Start of robot face
System.out.println(" +\"\"\"\"\"+");
System.out.println("[| o o |]");
System.out.println(" | ^ |");
System.out.println(" \'_\' ");
System.out.println(" +-----+\n\n\n");
// Start of my name in Block letters
System.out.println(" _____ .__");
System.out.println(" / _ \\ _____ _______ __ __ _____| |__");
System.out.println(" / /_\\ \\\\__ \\\\_ __ \\ | \\/ ___/ | \\");
System.out.println(" / | \\/ __ \\| | \\/ | /\\___ \\| Y \\");
System.out.println(" \\____|__ (____ /__| |___//____ >___| /");
System.out.println(" \\/ \\/ \\/ \\/");
}
}