Write a C# Sharp program that takes a number as input and print its multiplication table

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program that takes a number as input and print its multiplication table

In mathematics, a multiplication table is a mathematical table used to define a multiplication operation for an algebraic system.

C# Sharp multiplication table :

In mathematics, a multiplication table is a mathematical table used to define a multiplication operation for an algebraic system.

Sample Output:

Enter a number:                                                                                               
5
The table is : 5 x 1 = 5                                                                                      
             : 5 x 2 = 10                                                                                     
             : 5 x 3 = 15                                                                                     
             : 5 x 4 = 20                                                                                     
             : 5 x 5 = 25                                                                                     
             : 5 x 6 = 30                                                                                     
             : 5 x 7 = 35                                                                                     
             : 5 x 8 = 40                                                                                     
             : 5 x 9 = 45                                                                                     
             : 5 x 10 = 50 

الأجوبة

using System;
public class Exercise8
{
 public static void Main()
 {
  int x;
  int result;
 
  Console.WriteLine("Enter a number:");
  x = Convert.ToInt32(Console.ReadLine() );
   
  result = x * 1;
  Console.WriteLine("The table is : {0} x {1} = {2}", x, 1, result);
  result = x * 2;
  Console.WriteLine("             : {0} x {1} = {2}", x, 2, result);
  result = x * 3;
  Console.WriteLine("             : {0} x {1} = {2}", x, 3, result);
  result = x * 4;
  Console.WriteLine("             : {0} x {1} = {2}", x, 4, result);
  result = x * 5;
  Console.WriteLine("             : {0} x {1} = {2}", x, 5, result);
  result = x * 6;
  Console.WriteLine("             : {0} x {1} = {2}", x, 6, result);
  result = x * 7;
  Console.WriteLine("             : {0} x {1} = {2}", x, 7, result);
  result = x * 8;
  Console.WriteLine("             : {0} x {1} = {2}", x, 8, result);
  result = x * 9;
  Console.WriteLine("             : {0} x {1} = {2}", x, 9, result);
  result = x * 10;
  Console.WriteLine("             : {0} x {1} = {2}", x, 10, result);
 }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...