99乘法表

#C#

Posted by Phyxsius on 2023-09-14

namespace ConsoleApp1
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //i是被乘數,j是乘數
            for (int i = 1; i <= 9; i++)
            {
                for (int j = 1; j <=9; j++)
                {
                    // \t是tab,排版用
                    Console.Write(i + " * " + j + " = " + i * j + "\t");
                }
                Console.WriteLine();
            }
        }
    }
}

#C#







Related Posts

Python 爬取 Google 新聞

Python 爬取 Google 新聞

C++ 教學(四) 條件敘述句

C++ 教學(四) 條件敘述句

box model、display 的三種形式、定位(position)

box model、display 的三種形式、定位(position)


Comments