Advertisement
Cabana_Mario_Ariel_F

Clase Helper - TPN°3 - Grupo02

Apr 28th, 2022
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1.  /*
  2.     ================================
  3.       CLASE HELPER DEL GRUPO 02
  4.     ================================
  5.   */
  6.  
  7. package ar.edu.unju.aplication;
  8. import java.util.Scanner;
  9.  
  10. public class Helper {
  11.      public static int validarNumero(String mensaje, String mensajeError) {
  12.          Scanner input = new Scanner(System.in);
  13.          while (true) {
  14.          try {
  15.              System.out.println(mensaje);
  16.              return Integer.parseInt(input.nextLine());
  17.          } catch (NumberFormatException e) {
  18.              System.out.println(mensajeError);
  19.          }
  20.          }
  21.      }
  22.  
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement