package notasymayorconarrays;
import java.util.Scanner;
/**
*
* @author juan
*/
public class NotasYMayorConArrays {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner leer = new Scanner(System.in);
int [] notas= new int[10];
int total, media, mayor;
for (int i = 0; i < notas.length; i++) {
System.out.println("Introduzca la nota");
notas[i]=leer.nextInt();
}
mayor=Integer.MIN_VALUE;
total=0;
for (int i = 0; i < notas.length; i++) {
total+=notas[i];
mayor=Math.max(notas[i], mayor);
}
System.out.println("Media: "+ (double)total/notas.length);
System.out.println("Mayor: "+ mayor);
}
}
No hay comentarios:
Publicar un comentario