Cabana_Mario_Ariel_F

Clase HelperEjercicio3 - TPN°5 - Grupo02

May 10th, 2022 (edited)
959
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.92 KB | None | 0 0
  1. /*
  2.     ================================
  3.       CLASE HELPER DEL GRUPO 02
  4.     ================================
  5.   */
  6. package ar;
  7.  
  8. import java.util.Scanner;
  9.  
  10. public class HelperEjer3 {
  11.    
  12.     //------------------- Metodos para validar -------------------//
  13.     public static int validarNumero(String mensaje, String mensajeError) {
  14.         Scanner input = new Scanner(System.in);
  15.         while (true) {
  16.         try {
  17.             System.out.println(mensaje);
  18.             return Integer.parseInt(input.nextLine());
  19.         } catch (NumberFormatException e) {
  20.             System.out.println(mensajeError);
  21.         }
  22.         }
  23.     }//finvalidarNumero
  24.    
  25.     //------------------- Metodo expuesto para el ejer3 -------------------//
  26.    
  27.         public static double SumRoorN(int root) {
  28.             double result =0;
  29.             for (int i = 0; i < 10000000; i++) {
  30.                 result+= Math.exp(Math.log(i)/root);       
  31.             }
  32.             return result;
  33.         }//finSumRoorN
  34. }
  35.  
Add Comment
Please, Sign In to add comment