Advertisement
riverstifler

Helper.java

Oct 11th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. import java.util.Random;
  2. import java.util.Scanner;
  3.  
  4. public class Helper {
  5.     static Scanner entrada=new Scanner(System.in);
  6.     static Random numeroRandom = new Random();
  7.    
  8.     static int numeroEntero(String mensaje) {
  9.         int salida=0;
  10.         boolean valido=false;
  11.         System.out.print(mensaje);
  12.         do {
  13.             try {
  14.             salida= Integer.parseInt(entrada.nextLine());
  15.             valido=true;
  16.            } catch (NumberFormatException e) {
  17.                 System.out.print("Ingrese un Numero Entero....: ");
  18.            } //Fin try-catch.
  19.         } while (valido=false);
  20.         return salida;
  21.                        
  22.     } //Fin numeroEntero
  23.    
  24.     static int numeroEnteroPositivo(String mensaje){
  25.         int salida=-5;
  26.         System.out.print(mensaje);
  27.         do {  
  28.             try {
  29.             salida= Integer.parseInt(entrada.nextLine());
  30.            } catch (NumberFormatException e) {
  31.                 System.out.print("Ingrese un Numero Entero....: ");
  32.            } //Fin try-catch.
  33.         } while (salida<=0);
  34.         return salida;
  35.     } //Fin numeroEnteroPositivo
  36.    
  37.    
  38.    
  39.     //mio
  40.    static int generaAleatirio() {
  41.        return numeroRandom.nextInt(99);
  42.    }
  43.    
  44. } //Fin Helper
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement