C# PROGARM TO GET PRODUCT OF TWO NUMBERS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System; namespace ProductOfTwoNumbers { class Program { static void Main(string[] args) { int x, y; int result; Console.Write("\n Enter the first number : "); x = Convert.ToInt32(Console.ReadLine()); /* reading 1st number from user*/ Console.Write("n Enter the second number: "); y = Convert.ToInt32(Console.ReadLine()); /* reading 2nd number from user*/ result = x * y; /* storing the product in result*/ Console.WriteLine("\n The product of two numbers is: {0} \n", result); Console.ReadLine(); } } } |
Output: