Answers for "c# print multiplication table"

C#
0

c# print multiplication table

static void Main(string[] args)
    {
        for (int i = 1; i <= 3; i++)
        {
            for (int j = 1; j <= 3; j++)
            {
                Console.Write(i * j + "\t");
            }
            Console.Write("\n");
        }

        Console.ReadLine();
    }
Posted by: Guest on November-09-2020

Code answers related to "c# print multiplication table"

C# Answers by Framework

Browse Popular Code Answers by Language