Advertisement
ADL_Rodrigo_Silva

Untitled

Dec 30th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.05 KB | None | 0 0
  1. package cl.adl.calculadora;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. public class ClaseEjemplo {
  6.  
  7.     public static void main(String[] args) {
  8.        
  9.         System.out.println( Calculadora.multiplicar(4, 6) );
  10.        
  11.         System.out.println( Calculadora.exponente(4, 6) );
  12.        
  13.         /*
  14.         System.out.println( Calculadora.multiplicar(arrayNumeros) );
  15.        
  16.         System.out.println( Calculadora.sumar(arrayNumeros) );
  17.         */
  18.        
  19.         /*
  20.          *
  21.          * Construir el arraylist de datos
  22.          *
  23.          */
  24.        
  25.         ArrayList<Integer> arrayNumeros = new ArrayList<Integer>();
  26.        
  27.         arrayNumeros.add(3);
  28.         arrayNumeros.add(7);
  29.         arrayNumeros.add(7);
  30.         arrayNumeros.add(8);
  31.         arrayNumeros.add(9);
  32.         arrayNumeros.add(9);
  33.         arrayNumeros.add(15);
  34.         arrayNumeros.add(16);
  35.         arrayNumeros.add(16);
  36.        
  37.         //Calculadora.sumar(arrayNumeros);
  38.        
  39.        
  40.        
  41.         System.out.println( Calculadora.entregarNumerosPares(arrayNumeros)  );
  42.        
  43.        
  44.         System.out.println(  Calculadora.entregarNumerosInPares(arrayNumeros) );
  45.        
  46.         Calculadora.sacarDuplicados(arrayNumeros);  // -->      [ 3, 7, 8, 9, 15, 16]
  47.        
  48.        
  49.        
  50.  
  51.     }
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement