-
Notifications
You must be signed in to change notification settings - Fork 0
/
Iface.java
52 lines (40 loc) · 1.49 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
50
51
52
package iface;
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) {
ArrayList<Usuario> ListaUsuarios = new ArrayList<>();
ArrayList<Comunidade> ListaComunidade = new ArrayList<>();
SistemaIface Iface = new SistemaIface();
int opcao;
String getchar;
try
{
while(true)
{
Iface.MenuPrincipal();
opcao = ler.nextInt();
getchar = ler.nextLine();
if(opcao == 0){
break;
}
switch(opcao){
case 1:
Iface.CriarConta(ListaUsuarios);
break;
case 2:
ListaUsuarios = Iface.UsuarioLogado(ListaUsuarios,ListaComunidade);
break;
case 3:
Iface.RemoverConta(ListaUsuarios);
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");
}
}
}