-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathShell.java
43 lines (37 loc) · 1.3 KB
/
Shell.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
import java.util.*;
public class Shell {
public static void main(String[] a) {
// CRIE SEU RELÓGIO AQUI
while (true) {
var line = scanner.nextLine();
System.out.println("$" + line);
var par = line.split(" ");
var cmd = par[0];
if (cmd.equals("end")) {
break;
}
else if (cmd.equals("show")) {
// MOSTRE O RELÓGIO AQUI
}
else if (cmd.equals("init")) {
// INICIE O RELÓGIO AQUI utilizando o construtor
// int hour = Integer.parseInt(par[1]);
// int minute = Integer.parseInt(par[2]);
// int second = Integer.parseInt(par[3]);
}
else if (cmd.equals("set")) {
// CHAME OS MÉTODOS SET AQUI
// int hour = Integer.parseInt(par[1]);
// int minute = Integer.parseInt(par[2]);
// int second = Integer.parseInt(par[3]);
}
else if (cmd.equals("next")) {
// CHAME O MÉTODO nextSecond AQUI
}
else {
System.out.println("fail: comando invalido");
}
}
}
private static Scanner scanner = new Scanner(System.in);
}