Realizar un programa en consola para mostrar la serie de Fibonacci
Serie de fibonacci - C# 2022
Leer 3 notas y calcular el promedio, además enviar mensaje si aprobó o no. La nota de aprobación es 10.5 - C#
Ejemplo:
Leer 3 notas y calcular el promedio, además enviar mensaje si aprobó o no. La nota de aprobación es 10.5
using System;
namespace PromedioDe3Notas
{
class PromedioDe3Notas
{
static void Main(string[] args)
{
double nota_1, nota_2, nota_3, promedio;
Console.Write("Ingresa el valor de nota 1: ");
nota_1 = double.Parse(Console.ReadLine());
Console.Write("Ingresa el valor de nota 2: ");
nota_2 = double.Parse(Console.ReadLine());
Console.Write("Ingresa el valor de nota 3: ");
nota_3 = double.Parse(Console.ReadLine());
promedio=(nota_1+nota_2+nota_3)/3;
if(promedio<10.5)
Console.WriteLine("Desaprobado");
else
Console.WriteLine("Aprobado");
Console.WriteLine("Valor de promedio: " + promedio);
Console.WriteLine();
Console.Write("Presiona una tecla para terminar . . . ");
Console.ReadKey();
}
}
}
Popular Posts
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ejemplo1 { class suma { ...
-
Realizar un programa para mostrar la serie de Fibonacci CODIGO using System; using System.Collections.Generic; using System.Linq; us...
-
Realizar una aplicación para sumar 2 números enteros. CÓDIGO FUENTE using System; using System.Collections.Generic; using S...
-
Realizar un programa para calcular el área de un triangulo en C# CODIGO FUENTE using System; using System.Collections.Generic; usi...
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Eje...
-
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication7 { class Program { ...
-
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Eje...
-
Realizar un programa para mostrar si un año es bisiesto o no . CODIGO FUENTE using System; using System.Collections.Generic; using...
-
Realizar un programa para calcular el perímetro de un rectángulo - C# CÓDIGO FUENTE using System; using System.Collections.Gen...