-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOctopus.java
More file actions
21 lines (20 loc) · 977 Bytes
/
Octopus.java
File metadata and controls
21 lines (20 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//prints out an ASCII octopus
public class Octopus
{
public static void main ( String[] args )
{
System.out.println(" _,--._");
System.out.println(" ,' `.");
System.out.println(" |\\ / ,-. ,-. \\ /|");
System.out.println(" )o),/ ( ( o )( o ) ) \\.(o(");
System.out.println(" /o/// /| `-\' `-\' |\\ \\ \\o\\");
System.out.println(" / / |\\ \\( . , )/ /| \\ \\");
System.out.println(" | | \\o`-/ `\\/' \\-'o/ | |");
System.out.println(" \\ \\ `,' `.' / /");
System.out.println(" \\. \\ `-' ,'| /\\ |`. `-' / ,/");
System.out.println(" \\`. `.__,' / / \\ \\ `.__,' ,'/");
System.out.println(" \\o\\ ,' ,' `. `. /o/");
System.out.println(" \\o`---' ,' `. `---'o/");
System.out.println(" `.____,' `.____,'");
}
}