Advertisement
Cabana_Mario_Ariel_F

Clase Helper - TPN°2 - Grupo02

Apr 20th, 2022
984
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.58 KB | None | 0 0
  1. /*
  2.  ======================================================================================================================
  3.  * Modelo de Desarrollo de Programas y Programación Concurrente - Facultad de Ingeniería - Universidad Nacional de Jujuy
  4.   ======================================================================================================================
  5.  */
  6.  
  7. /**
  8.  * @Autor: Grupo 02 M.D.P y P.C.
  9. /*      @Integrantes:                  |    @Carrera:             |   @DNI:
  10.                                        |                          |
  11.   ALVAREZ, Cesar Fabian                | Ing. Informática         | 41.275.832
  12.   CABANA, Mario Ariel Fernando         | Ing. Informática         | 42.268.639
  13.   MONTELLANO, Leandro                  | Ing. Informática         | 43.114.035
  14.   RETAMOZO CORTEZ, Candelaria          | Ing. Informática         | 95.790.260
  15.   RUIZ, Erica Vanina                   | Ing. Informática         | 38.471.424
  16.  
  17.  * @Fecha: 21/04/2022.
  18.  */
  19.  
  20.  /*
  21.     ================================
  22.       CLASE HELPER DEL GRUPO 02
  23.     ================================
  24.   */
  25. package ar.edu.unju.aplicacion;
  26. import java.util.Scanner;
  27.  
  28.     public class HelperTp2 {
  29.         public static int validarNumero(String mensaje, String mensajeError) {
  30.             Scanner input = new Scanner(System.in);
  31.             while (true) {
  32.             try {
  33.                 System.out.println(mensaje);
  34.                 return Integer.parseInt(input.nextLine());
  35.             } catch (NumberFormatException e) {
  36.                 System.out.println(mensajeError);
  37.             }
  38.             }
  39.         }
  40.      
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement