-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.java
More file actions
27 lines (26 loc) · 917 Bytes
/
About.java
File metadata and controls
27 lines (26 loc) · 917 Bytes
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
import java.io.*;
class About
{
static void display () throws Exception
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
for(int i = 17; i > 0; i--)
{
for(int j = i; j > 0; j--)
System.out.println();
System.out.println("\t\tProduct\tName\t:\tMasterMind");
System.out.println("\t\tProduct\tType\t:\tCode-breaking Game");
System.out.println("\t\tVersion\tNumber\t:\t1.0");
System.out.println("\t\tDesigned By\t:\tPrajna R");
System.out.println("\t\tProject\tPurpose\t:\tX Std project");
Thread.sleep(300);
if(i == 1)
Thread.sleep(5000);
System.out.print("\u000C");
}
System.out.print("\t\tPress Enter to Continue...");
br.read();
System.out.print("\u000C");
Fill.load();
}
}