Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- ======================================================================================================================
- * Modelo de Desarrollo de Programas y Programación Concurrente - Facultad de Ingeniería - Universidad Nacional de Jujuy
- ======================================================================================================================
- */
- /**
- * @Autor: Grupo 02 M.D.P y P.C.
- /* @Integrantes: | @Carrera: | @DNI:
- | |
- ALVAREZ, Cesar Fabian | Ing. Informática | 41.275.832
- CABANA, Mario Ariel Fernando | Ing. Informática | 42.268.639
- MONTELLANO, Leandro | Ing. Informática | 43.114.035
- RETAMOZO CORTEZ, Candelaria | Ing. Informática | 95.790.260
- RUIZ, Erica Vanina | Ing. Informática | 38.471.424
- * @Fecha: 21/04/2022.
- */
- /*
- ================================
- CLASE HELPER DEL GRUPO 02
- ================================
- */
- package ar.edu.unju.aplicacion;
- import java.util.Scanner;
- public class HelperTp2 {
- public static int validarNumero(String mensaje, String mensajeError) {
- Scanner input = new Scanner(System.in);
- while (true) {
- try {
- System.out.println(mensaje);
- return Integer.parseInt(input.nextLine());
- } catch (NumberFormatException e) {
- System.out.println(mensajeError);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement