Exercise
Product
Objetive
Write a C# program that asks the user for two integer numbers and shows their multiplication, but not using "*". It should use consecutive additions. (Hint: remember that 3 * 5 = 3 + 3 + 3 + 3 + 3 = 15)
Example Code
using System;
class Program
{
static void Main()
{
Console.Write("Enter the first number: ");
int num1 = int.Parse(Console.ReadLine());
Console.Write("Enter the second number: ");
int num2 = int.Parse(Console.ReadLine());
int result = 0;
for (int i = 1; i <= Math.Abs(num2); i++)
{
result += num1;
}
if (num2 < 0)
{
result = -result;
}
Console.WriteLine($"The product of {num1} and {num2} is: {result}");
}
}