Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package TP4;
- import java.util.Random;
- import java.util.Scanner;
- public class Helper {
- Random random = new Random();
- Scanner scanner = new Scanner(System.in);
- public boolean continuar() {
- boolean seguir = true;
- int opc;
- do {
- opc = ingresoNum();
- if (opc == 1) {
- seguir= true;
- }else if(opc==2){
- seguir=false;
- print("\n-------------------\nFin del programa...\n------------------");
- }else {
- print("Opcion invalida. Ingrese correctamente\n");
- }
- }while(opc>2 || opc <1);
- return seguir;
- }
- public int ingresoNum() {
- int numero=0;
- int cont=0;
- while (cont == 0) {
- Scanner scanner= new Scanner(System.in);
- try{
- numero=scanner.nextInt();
- cont =1;
- }catch(Exception e) {
- print("No se Ingreso correctamente, por favor ingrese nuevamente...");
- cont =0;
- }
- }
- return numero;
- }
- public int generarRand () {
- int numRand =(int) (Math.random()*500+1);
- System.out.println("El numero aleatorio genrado es: "+numRand);
- return numRand;
- }
- public void print(String texto) {
- System.out.println(texto);
- }
- public String toString(int num) {
- return Integer.toString(num);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement