Advertisement
ADL_Rodrigo_Silva

Untitled

Dec 23rd, 2021
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. package cl.adl.collec;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.ListIterator;
  5.  
  6. public class EjemploCollec {
  7.  
  8.     public static void main(String[] args) {
  9.        
  10.         ArrayList<Float> notas = new ArrayList<>();
  11.        
  12.         notas.add(5.7f);
  13.         notas.add(3.5f);
  14.         notas.add(7f);
  15.         notas.add(5.5f);
  16.         notas.add(6.4f);
  17.  
  18.         System.out.println(notas);
  19.  
  20.         float suma = 0;
  21.         float menor = notas.get(0);
  22.         for (Float s: notas) {
  23.             if(s<menor) {
  24.                 menor = s;
  25.             }else {
  26.                 suma = suma + s;
  27.             }
  28.         }
  29.         notas.remove(menor);
  30.  
  31.         float promedio = suma/notas.size();
  32.        
  33.         System.out.println(notas);
  34.         System.out.println(promedio);
  35.  
  36.     }
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement