Friday, July 2, 2021

Multiplication Table in C#

A simple multiplication table that I wrote using C# programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website, kindly contact me also at my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.





Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace Multiplication_Table

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("\n");

            Console.WriteLine("\t\tMultiplication Table in C#");

            for (int i = 1; i <= 12; i++)

            {

                Console.WriteLine("\n");


                for (int j = 1; j <= 12; j++)

                {

                    Console.Write("{0,4}", i * j);

                }


            }


            Console.Read();

        }

    }

}


No comments:

Post a Comment