38 lines
971 B
C#
38 lines
971 B
C#
/*
|
|
* C# Program to Find and display the Multiplication Table
|
|
*/
|
|
using System;
|
|
class Multipication
|
|
{
|
|
static void Main()
|
|
{
|
|
int no;
|
|
Console.Write("Enter a no : ");
|
|
no = Convert.ToInt32(Console.ReadLine());
|
|
while (no <= 0)
|
|
{
|
|
Console.WriteLine("You entered an invalid no");
|
|
Console.Write("Enter a no great than 0: ");
|
|
no = Convert.ToInt32(Console.ReadLine());
|
|
}
|
|
Console.WriteLine("Multiplication Table :");
|
|
for (int i = 1; i <= no; i++)
|
|
{
|
|
Console.WriteLine("\n");
|
|
for (int j = 1; j <= no; j++)
|
|
{
|
|
Console.Write("{0,6}", i * j);
|
|
}
|
|
}
|
|
Console.Read();
|
|
}
|
|
}
|
|
|
|
/*
|
|
Enter a No : 5
|
|
Multiplication Table :
|
|
1 2 3 4 5
|
|
2 4 6 8 10
|
|
3 6 9 12 15
|
|
4 8 12 16 20
|
|
5 10 15 20 25 |