import javax.swing.JOptionPane;
public class ejemp07_notas{
public static void main(String args[]){
int nota1, nota2, nota3, nota4, nota5, menor,mayor, prom;
nota1 =Integer.parseInt(JOptionPane.showInputDialog("Ingrese Nota 1 :"));
nota2 =Integer.parseInt(JOptionPane.showInputDialog("Ingrese Nota 2 :"));
nota3 =Integer.parseInt(JOptionPane.showInputDialog("Ingrese Nota 3 :"));
nota4 =Integer.parseInt(JOptionPane.showInputDialog("Ingrese Nota 4 :"));
nota5 =Integer.parseInt(JOptionPane.showInputDialog("Ingrese Nota 5 :"));
menor=nota1;
mayor=nota2;
prom = 0;
if(nota2<menor){
menor=nota2;
}
else
if (nota2>mayor){
mayor=nota2;
}
if(nota3<menor){
menor=nota3;
}
else
if (nota3>mayor){
mayor=nota3;
}
if(nota4<menor){
menor=nota4;
}
if (nota4>mayor){
mayor=nota4;
}
if(nota5<menor){
menor=nota5;
}
else
if (nota5> mayor){
mayor=nota5;
}
prom = (nota1 + nota2 + nota3 + nota4 + nota5)/5;
JOptionPane.showMessageDialog (null, "La nota menor es : " + menor);
JOptionPane.showMessageDialog(null, "la nota mayor es: " + mayor);
JOptionPane.showMessageDialog(null,"el promedio es: " + prom);
}
}
No hay comentarios:
Publicar un comentario