lunes, 29 de abril de 2013

REALIZAR UN PROGRAMA QUE PIDA POR TECLADO 3 NOTAS DE UN ALUMNO, OBTENER EL PROMEDIO E IMPRIMA ALGUNO DE ESTOS MENSAJES(QUE SEA REGULAR O REPROBADO)

import java.util.Scanner;

public class ejercicio7 {
    public static void main(String[] ar) {
        Scanner teclado=new Scanner(System.in);
        int nota1,nota2,nota3;
        System.out.print("Ingrese primer nota:");
        nota1=teclado.nextInt();
        System.out.print("Ingrese segunda nota:");
        nota2=teclado.nextInt();
        System.out.print("Ingrese tercer nota:");
        nota3=teclado.nextInt();
        int promedio=(nota1 + nota2 + nota3) / 3;
        if (promedio>=7) {
            System.out.print("Promocionado");    
        } else {
            if (promedio>=4) {
                System.out.print("Regular");
            } else {
                System.out.print("Reprobado");
            }
        }
    }
http://www.youtube.com/watch?v=skZhEeCLh2Q

No hay comentarios:

Publicar un comentario