Advertisement
Cabana_Mario_Ariel_F

TP3_Principal

Oct 12th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. public class Principal {
  2.     //-------------- Instanciado de los Ejercicios ---------------//
  3.    
  4.         public static void main (String[] args){
  5.             SuprimirMultiplosdeCola ejercicio1= new SuprimirMultiplosdeCola();
  6.             UnirColasIntercalando ejercicio3= new UnirColasIntercalando();
  7.             int respuesta;
  8.             do {
  9.                 menuInstanciado();
  10.                 respuesta=Helper.numeroEntero("Ingrese una opción ........ : ");
  11.                 switch(respuesta){
  12.                 case 1: ejercicio1.run();
  13.                     break;
  14.                 case 2: ejercicio3.run();
  15.                     break;
  16.                 case 3: //Fin del programa.
  17.                     break;
  18.                 default: System.out.println("Ingrese una opción valida");
  19.                     break;
  20.                 }
  21.             } while (respuesta!=3);
  22.            
  23.         } //Fin main.
  24.        
  25.     //--------------------- Menú - Principal --------------------//
  26.        
  27.         public static void menuInstanciado(){
  28.             System.out.println("----- Ejercicios del TP N°3 Cola/Queue -----");
  29.             System.out.println("1) Ejercicio 1 ......");
  30.             System.out.println("2) Ejercicio 3......");
  31.             System.out.println("3) Salir del programa......");
  32.         } //Fin menu.
  33.    
  34. } //Fin class Principal.
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement