PROGRAMA C#.SACAR PROMEDIO Y MOSTRAR SI ESTA REPROBAD O O APROBADO.
using System;
class CCalificaciones
{
public static void Main(String[] args)
{
Console.ForegroundColor = ConsoleColor.Black;
Console.BackgroundColor = ConsoleColor.Yellow;
float dato1;
float dato2;
float prom;
Console.WriteLine("Ingresa calificacion1:");
dato1 = int.Parse(Console.ReadLine());
Console.WriteLine("Ingresa calificacion 2:");
dato2 = int.Parse(Console.ReadLine());
prom = (dato1 + dato2) / 2;
Console.WriteLine("promedio={2}", dato1, dato2, prom);
if (prom <= 6)
Console.WriteLine("estas reprobado");
else
Console.WriteLine("esta aprobado");
Console.ReadLine();
}
}
No hay comentarios.:
Publicar un comentario
Es muy importante tu comentarios: