-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStaticsArt.java
More file actions
28 lines (24 loc) · 1.53 KB
/
StaticsArt.java
File metadata and controls
28 lines (24 loc) · 1.53 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
public class StaticsArt {
public static void arts() {
System.out.printf(" . . \n" +
"8 8888888888 ,8. ,8. d888888o. \n" +
"8 8888 ,888. ,888. .`8888:' `88.\n" +
"8 8888 .`8888. .`8888. 8.`8888. Y8\n" +
"8 8888 ,8.`8888. ,8.`8888. `8.`8888. \n" +
"8 888888888888 ,8'8.`8888,8^8.`8888. `8.`8888. \n" +
"8 8888 ,8' `8.`8888' `8.`8888. `8.`8888. \n" +
"8 8888 ,8' `8.`88' `8.`8888. `8.`8888. \n" +
"8 8888 ,8' `8.`' `8.`8888. 8b `8.`8888.\n" +
"8 8888 ,8' `8 `8.`8888. `8b. ;8.`8888\n" +
"8 888888888888 ,8' ` `8.`8888. `Y8888P ,88P'");
System.out.println("\n\n==================================================================");
System.out.println(" Welcome to Employee Management System ");
}
public static void SelectList() {
System.out.println("\nPress 1 : To Add an Employee Details");
System.out.println("Press 2 : To See an Employee Details");
System.out.println("Press 3 : To Remove an Employee");
System.out.println("Press 4 : To Update Employee Details");
System.out.println("Press 5 : To Exit the EMS Portal");
}
}