Grupo
Introducción a C#
Objectivo
El objetivo de este ejercicio es escribir un programa que acepte dos números introducidos por el usuario, los multiplique e imprima el resultado.
Escriba un programa en C# para imprimir el resultado de multiplicar dos números introducidos por el usuario.
Ejemplo de ejercicio en C#
Mostrar código C#
// This program multiplies two numbers entered by the user and displays the result
using System;
namespace MultiplyTwoNumbers
{
class Program
{
// The Main method is where the program execution begins
static void Main(string[] args)
{
// Declare variables to store the numbers
double number1, number2, result;
// Ask the user to enter the first number
Console.Write("Enter the first number: ");
number1 = Convert.ToDouble(Console.ReadLine()); // Read and convert the input to a double
// Ask the user to enter the second number
Console.Write("Enter the second number: ");
number2 = Convert.ToDouble(Console.ReadLine()); // Read and convert the input to a double
// Perform the multiplication
result = number1 * number2;
// Display the result
Console.WriteLine("The result of multiplying {0} and {1} is: {2}", number1, number2, result);
// Wait for the user to press a key before closing the console window
Console.ReadKey(); // This keeps the console window open until a key is pressed
}
}
}
Output
Enter the first number: 8
Enter the second number: 7
The result of multiplying 8 and 7 is: 56
Código de ejemplo copiado
Comparte este ejercicio de C#