Write a C# Sharp program to print the output of multiplication of three numbers which will be entered by the user
- برمجة سي شارب
- برمجة
- 2021-05-14
- MarwaMohammed
الأجوبة
using System;
public class Exercise6
{
public static void Main()
{
int num1, num2, num3;
Console.Write("Input the first number to multiply: ");
num1 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the second number to multiply: ");
num2 = Convert.ToInt32(Console.ReadLine());
Console.Write("Input the third number to multiply: ");
num3 = Convert.ToInt32(Console.ReadLine());
int result = num1 * num2 * num3;
Console.WriteLine("Output: {0} x {1} x {2} = {3}",
num1, num2, num3, result);
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال