forked from harambeisnotdead/java-carande
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuentacorriente.java
31 lines (24 loc) · 1002 Bytes
/
cuentacorriente.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
import java.util.Scanner;
public class cuentacorriente {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Opciones:\n\n1. Crear cuenta\n2. Cuenta corriente\n3. Cuenta de ahorro\n");
System.out.print("Introduce una opcion: ");
int opc = scanner.nextInt();
String opcion = "";
switch (opc) {
case 1: System.out.print("\nIntroduce cantidad: "); int a = scanner.nextInt(); break;
case 2:
case 3: System.out.println("\nOpciones:\n\n1. Abonar\n2. Cargar \n3. Mostrar saldo\n");
System.out.print("Introduce una opcion: ");
opc = scanner.nextInt();
switch (opc) {
case 1: opcion = "abonar"; break;
case 2: opcion = "cargar"; break;
case 3: opcion = "mostrar saldo"; break;
default: System.out.println("Opcion no valida");
}
if (opcion!="") System.out.println("Has introducido la opcion "+opcion);
}
}
}