Codigo :
==============================================================
import java.io.*;
public class Promedio {
public Promedio(){
super();
}
public static void main(String[]args)throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("Cuantas notas va a ingresar: ");
int numNotas=Integer.parseInt(br.readLine());
int []notas=new int[numNotas];
double promedio=0;
double acumulado=0;
for(int i=0;i<=numNotas-1;i++){
System.out.println("Ingrese la nota numero " +i );
notas[i]=Integer.parseInt(br.readLine());
acumulado=acumulado + notas[i];
}
promedio=acumulado/numNotas;
System.out.println("el promedio es :" + promedio);
System.out.println("===========================");
System.out.println("LAS NOTAS MAYORES AL PROMEDIO SON: ");
for(int j=0;j<=numNotas-1;j++){
if(notas[j]>promedio){
System.out.println(notas[j]);
}
}
}
}
===============================================================
Simulacion :
No hay comentarios:
Publicar un comentario