0
Alguien me ayuda en el 18.4 de Java?
Hacer un sistema telefónico automatizado
1 Réponse
0
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int number;
do {
//toma la entrada y la salida del mensaje correspondiente
/*
1 => Language selection
2 => Customer support
3 => Check the balance
4 => Check loan balance
0 => Exit
*/
}
while(number != 0);
}
}