Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Random;
- import java.util.Scanner;
- public class Helper {
- //----------------Objetos para toda la clase Tp04----------------//
- public static Scanner sc = new Scanner(System.in);
- public static Random random = new Random();
- //----------------------- Validar Entradas-----------------------//
- static int numeroEntero(String mensaje) { //Módulo de validación de un entero.
- int salida=0;
- boolean valido;
- do {
- System.out.print(mensaje);
- try {
- return Integer.parseInt(sc.nextLine());
- } catch (NumberFormatException e) {
- valido=false;
- } //Fin try-catch.
- } while (valido==false);
- return salida;
- } //Fin numeroEntero
- static int numeroEnteroPositivo(String mensaje){ //Módulo dedicado a reconocer un número natural.
- int salida;
- do {
- salida=numeroEntero(mensaje);
- } while (salida<1);
- return salida;
- } //Fin numeroEnteroPositivo.
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement