-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFill.java
More file actions
43 lines (41 loc) · 1.62 KB
/
Fill.java
File metadata and controls
43 lines (41 loc) · 1.62 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
class Fill
{
static void logo() throws Exception
{
l1: for(int i = 1; i <= 5; i++)
{
System.out.println(" * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * * *");
System.out.println(" * * * * * * *");
if(i == 5) break l1;
Thread.sleep(250);
System.out.print("\u000C");
Thread.sleep(200);
}
Thread.sleep(1000);
System.out.println("");
System.out.println(" # WELCOME TO BRAINZILIA #");
System.out.println("");
System.out.println(" # BRAINWAVE GAMES PRESENTS #");
System.out.println("");
System.out.println(" # MASTERMIND #");
Thread.sleep(5000);
System.out.print("\u000C");
}
static void load() throws Exception
{
System.out.print("\u000C");
for(int i = 1; i < 4; i++)
{
System.out.print("\t\t Loading... Please wait\n\t\t");
for(int j = 1;j <= 11;j++)
{
System.out.print("=");
Thread.sleep(80);
}
System.out.print("\u000C");
}
}
}