Ejercicio
Uso de {0} y comentarios
Objetivo
Escriba un programa en C# para pedir al usuario tres números y mostrar su multiplicación. La primera línea debe ser un comentario con su nombre y apellidos. Debe verse de la siguiente manera:
Introduzca el primer número para multiplicar
12
Introduzca el segundo número para multiplicar
23
Introduzca el tercer número para multiplicar
2
Código de Ejemplo
using System; // Importing the System namespace to use Console functionalities
// Main class of the programpublic
class Program
{
// Main method where the program execution begins
static void Main()
{
// Declaring three variables to store the numbers entered by the user
double num1, num2, num3;
// Asking the user to enter the first number and reading the input
Console.Write("Enter the first number to multiply: ");
num1 = Convert.ToDouble(Console.ReadLine());
// Asking the user to enter the second number and reading the input
Console.Write("Enter the second number to multiply: ");
num2 = Convert.ToDouble(Console.ReadLine());
// Asking the user to enter the third number and reading the input
Console.Write("Enter the third number to multiply: ");
num3 = Convert.ToDouble(Console.ReadLine());
// Calculating the result of multiplying the three numbers
double result = num1 * num2 * num3;
// Printing the result of the multiplication to the screen using {0}
Console.WriteLine("The result of multiplying the three numbers is: {0}", result);
}
}