Advertisement
Cabana_Mario_Ariel_F

TP4_Helper

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