-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIFace.java
49 lines (38 loc) · 1.29 KB
/
IFace.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
package projeto;
import java.util.ArrayList;
import java.util.InputMismatchException;
import java.util.Scanner;
public class IFace {
public static Scanner ler = new Scanner(System.in);
public static void main(String[] args) {
SistemaIface Iface = new SistemaIface();
int opcao;
String getchar = null;
try
{
while(true)
{
Iface.MenuPrincipal();
opcao = ler.nextInt();
getchar = ler.nextLine();
if(opcao == 0){
break;
}
switch(opcao){
case 1:
Iface.CriarConta();
break;
case 2:
Iface.UsuarioLogado();
break;
case 3:
Iface.RemoverConta();
break;
}
}
}catch(InputMismatchException I){
System.out.println("-> Entrada informada possui o tipo de dado incompativel com o esperado!");
System.out.println("-> Não é possivel prosseguir, Encerrando o sistema...\n");
}
}
}