Encontrar El Mayor De Tres Números En C#

Este ejercicio demuestra cómo usar sentencias condicionales en C# para comparar tres números y encontrar el mayor. El programa solicitará al usuario que ingrese tres números diferentes y luego determine cuál es el mayor. Mediante sentencias if y else if, podemos verificar cada par de números y compararlos eficazmente.

Este tipo de lógica se usa comúnmente en escenarios donde un programa necesita tomar decisiones basadas en la entrada del usuario, como determinar la puntuación más alta en un juego o seleccionar la mejor opción entre un conjunto de opciones. Este ejercicio le ayudará a comprender cómo usar operadores de comparación y sentencias condicionales en C# para resolver estos problemas.



Grupo

Conceptos básicos control de flujo en C#

Objectivo

El objetivo de este ejercicio es escribir un programa en C# que solicite al usuario introducir tres números y luego los compare para encontrar y mostrar el mayor.

Escriba un programa en C# que solicite al usuario introducir tres números y muestre el mayor.

Ejemplo de ejercicio en C#

 Copiar código C#
// First and Last Name: John Doe

using System;

namespace GreatestOfThreeNumbers
{
    class Program
    {
        // Main method to start the program execution
        static void Main(string[] args)
        {
            // Declare three variables to store the user's input
            double num1, num2, num3;

            // Prompt the user to enter the first number
            Console.Write("Enter the first number: ");
            num1 = Convert.ToDouble(Console.ReadLine()); // Read input and convert to double

            // Prompt the user to enter the second number
            Console.Write("Enter the second number: ");
            num2 = Convert.ToDouble(Console.ReadLine()); // Read input and convert to double

            // Prompt the user to enter the third number
            Console.Write("Enter the third number: ");
            num3 = Convert.ToDouble(Console.ReadLine()); // Read input and convert to double

            // Compare the three numbers and display the greatest one
            if (num1 >= num2 && num1 >= num3)
            {
                // num1 is greater than or equal to both num2 and num3
                Console.WriteLine("The greatest number is: " + num1);
            }
            else if (num2 >= num1 && num2 >= num3)
            {
                // num2 is greater than or equal to both num1 and num3
                Console.WriteLine("The greatest number is: " + num2);
            }
            else
            {
                // num3 is the greatest number
                Console.WriteLine("The greatest number is: " + num3);
            }

            // Wait for user input before closing the console window
            Console.ReadKey(); // Keeps the console open until a key is pressed
        }
    }
}

 Output

//Example 1 (num1 is greatest):
Enter the first number: 7  
Enter the second number: 3  
Enter the third number: 5  
The greatest number is: 7  

//Example 2 (num2 is greatest):
Enter the first number: 4  
Enter the second number: 9  
Enter the third number: 2  
The greatest number is: 9  

//Example 3 (num3 is greatest):
Enter the first number: 2  
Enter the second number: 3  
Enter the third number: 10  
The greatest number is: 10

Comparte este ejercicio de C#

Practica más ejercicios C# de Conceptos básicos control de flujo en C#

¡Explora nuestro conjunto de ejercicios de práctica de C#! Diseñados específicamente para principiantes, estos ejercicios te ayudarán a desarrollar una sólida comprensión de los fundamentos de C#. Desde variables y tipos de datos hasta estructuras de control y funciones simples, cada ejercicio está diseñado para desafiarte gradualmente a medida que adquieres confianza en la programación en C#..