Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class TP4Principal {
- public static void main(String[] args){
- CompetenciaPescaPejerey ejercicio6=new CompetenciaPescaPejerey();
- int respuesta;
- do {
- menu();
- respuesta=Helper.numeroEntero("Ingrese una opcion ........ : ");
- switch(respuesta){
- case 1: //ejercicio2.run();
- break;
- case 2: ejercicio6.run();
- break;
- case 3: //Fin del programa
- break;
- default: System.out.println("Ingrese una opcion valida");
- break;
- }
- } while (respuesta!=3);
- } //Fin main
- public static void menu(){
- System.out.println("----- Ejercicios del TP N°4 Listas -----");
- System.out.println("1) Ejercicio 2 ......");
- System.out.println("2) Ejercicio 6......");
- System.out.println("3) Salir del programa......");
- } //Fin menu
- } //Fin class TP4Principal
Add Comment
Please, Sign In to add comment