Advertisement
riverstifler

Helper

Oct 25th, 2020 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.07 KB | None | 0 0
  1. import java.util.Random;
  2. import java.util.Scanner;
  3.  
  4. public class Helper {
  5.     //----------------Objetos para toda la clase Tp03----------------//
  6.  
  7.     public static Scanner sc = new Scanner(System.in);
  8.     public static Random random = new Random();
  9.    
  10.  
  11. //----------------------- Validar Entradas-----------------------//
  12.  
  13.     static int numeroEntero(String mensaje) {           //Módulo de validación de un entero.
  14.         int salida=0;
  15.         boolean valido;
  16.         do {
  17.             System.out.print(mensaje);
  18.             try {
  19.             return Integer.parseInt(sc.nextLine());
  20.            } catch (NumberFormatException e) {
  21.                 valido=false;
  22.            } //Fin try-catch.
  23.         } while (valido==false);
  24.         return salida;                
  25.     } //Fin numeroEntero
  26.  
  27.     static int numeroEnteroPositivo(String mensaje){    //Módulo dedicado a reconocer un número natural.
  28.         int salida;
  29.         do {
  30.             salida=numeroEntero(mensaje);
  31.         } while (salida<1);
  32.         return salida;
  33.     } //Fin numeroEnteroPositivo.
  34.  
  35. }
  36.        
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement