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

AI輔導室|製作圓形漢字印鑑效果

AI輔導室|製作圓形漢字印鑑效果

Terms of Use 會員服務條款

Terms of Use 會員服務條款

SQL 檢視表、常用函式與集合運算入門教學

SQL 檢視表、常用函式與集合運算入門教學


Comments