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 {
- static Scanner entrada=new Scanner(System.in);
- static Random numeroRandom = new Random();
- static int numeroEntero(String mensaje) {
- int salida=0;
- boolean valido=false;
- System.out.print(mensaje);
- do {
- try {
- salida= Integer.parseInt(entrada.nextLine());
- valido=true;
- } catch (NumberFormatException e) {
- System.out.print("Ingrese un Numero Entero....: ");
- } //Fin try-catch.
- } while (valido=false);
- return salida;
- } //Fin numeroEntero
- static int numeroEnteroPositivo(String mensaje){
- int salida=-5;
- System.out.print(mensaje);
- do {
- try {
- salida= Integer.parseInt(entrada.nextLine());
- } catch (NumberFormatException e) {
- System.out.print("Ingrese un Numero Entero....: ");
- } //Fin try-catch.
- } while (salida<=0);
- return salida;
- } //Fin numeroEnteroPositivo
- //mio
- static int generaAleatirio() {
- return numeroRandom.nextInt(99);
- }
- } //Fin Helper
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement