Java : Detectar si esta aprobado o reprobado segun notas
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package ejerciciociclos3;
import javax.swing.JOptionPane;
/**
*
* @author Clases
*/
public class Ejerciciociclos3 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
float cont=0,nota=0,suma=0,prom=0,mayor=0,menor=0;
while(cont<5){
nota=Float.parseFloat(JOptionPane.showInputDialog("Ingresar Nota"));
if( cont==0){ //solo cuando se ingresa
menor=nota;// primera nota
}
if( nota<menor){
menor=nota;
}
suma=suma+nota;
cont++; //cont=cont+1;
if ( nota>mayor)
mayor=nota;
}
prom=suma/5;
JOptionPane.showMessageDialog(null, "el promedio es "+prom);
if(prom>=4)
JOptionPane.showMessageDialog(null, "Esta Aprobado");
else
JOptionPane.showMessageDialog(null, "Esta Reprobado");
JOptionPane.showMessageDialog(null, "La nota Mayor es "+mayor);
JOptionPane.showMessageDialog(null, "La nota Menor es "+menor);
}
}
Copyright : Inacap.
Copyright : Inacap.