Advertisement
riverstifler

TrabajoPracticoN0.ejercicio6

Aug 24th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.00 KB | None | 0 0
  1. package trabajopracticoN0;
  2. import java.util.Scanner;
  3. public class EjercicioN6 {
  4.     public static void main(String[] args) {
  5.     verificar();
  6.     }
  7. //Verificacion del ingreso de datos y llamado al modulo de numero perfecto
  8. public static void verificar() {
  9.     Scanner a = new Scanner(System.in);
  10.     boolean comprovacion = true;
  11.     int mun = 0;
  12.     do {
  13.         comprovacion =true;
  14.       try {
  15.           System.out.println("Ingrese un numero");
  16.         mun=Integer.parseInt(a.nextLine());
  17.           numPref(mun);
  18.       }catch(NumberFormatException e) {
  19.       System.out.println("Debe ingresar un numero");
  20.       comprovacion = false;
  21.      }
  22.     } while( comprovacion != true );
  23.     a.close();
  24.    }
  25. //Para calcular el numero perfecto
  26. public static void numPref(int mun) {
  27.  int acum = 0;
  28.  for (int i=1; i < mun; i++) {
  29.        if(mun % i == 0 ) {
  30.            acum = acum + i;
  31.        }
  32.  }
  33.        if(acum == mun) {
  34.             System.out.println("El munero es perfecto "+" " + acum);
  35.         }else {
  36.             System.out.println("El numero no es perfecto es igual a"+" " + acum);
  37.         }
  38.   }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement