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