-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHopper.java
108 lines (98 loc) · 3.16 KB
/
Hopper.java
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import java.util.*;
import java.io.*;
import java.util.concurrent.TimeUnit;
class Hopper
{
public static void main(String[] args)
{
System.out.println("Starting The Machine...");
System.out.println("==========================");
try
{
Thread.sleep(3000);
}
catch(Exception e)
{
System.out.println("Try Again...");
}
System.out.println("Press 1, if Hopper is full");
System.out.println("Press 2, if Hopper is not full");
Scanner sc=new Scanner(System.in);
int status=sc.nextInt();
System.out.println("========================");
if(status==2)
{
System.out.println("Normal Dumping...");
try
{
Thread.sleep(3000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Back to the PayLoad");
System.out.println("========================");
}
else if(status==1)
{
System.out.println("Enter the status of G.R.D...");
System.out.println("Press 1, if GRD has reached...");
System.out.println("Press 2, if GRD has not reached...");
int status2=sc.nextInt();
System.out.println("========================");
if(status2==1)
{
System.out.println("In process of complition...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
else if(status2==2)
{
System.out.println("Divert it to Stockyard...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Back to the PayLoad");
}
else
{
System.out.println("Please select the valid operations and Restart the Machine again...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
}
else
{
System.out.println("Please select the valid operations and Restart the Machine again...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
}
}