Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- ================================
- CLASE HELPER DEL GRUPO 02
- ================================
- */
- package ar.edu.unju.aplication;
- import java.util.Scanner;
- public class Helper {
- 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