import java.util.Scanner;
public class ejercicio12 {
public static void main(String[] ar) {
Scanner teclado=new Scanner(System.in);
int x,nota,conta1,conta2;
x=1;
conta1=0;
conta2=0;
while (x<=10) {
System.out.print("Ingrese nota:");
nota=teclado.nextInt();
if (nota>=7) {
conta1=conta1 + 1;
}else {
conta2=conta2 + 1;
}
x=x + 1;
System.out.print("Cantidad de alumnos con notas mayores o iguales a 7:");
System.out.println(conta1);
System.out.print("Cantidad de alumons con notas menores a 7:");
System.out.print(conta2);
}
}
jueves, 2 de mayo de 2013
REALIZAR UN PROGRAMA QUE SOLICITE INGRESAR 10 NOTAS Y NOS INFORME CUANTOS TIENEN NOTAS MAYORES ,MENORES O IGUALES A 7/10
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario