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#

![[ 紀錄 ] 實戰練習 - 部落格 (以 php 實作前端 + 後端)](https://static.coderbridge.com/img/krebikshaw/70569c07bfd042cab9185eca51eeda58.jpg)
![[ 紀錄 ] 實戰練習 - 部落格 (以 Express 實作前端 + 後端)](https://static.coderbridge.com/img/krebikshaw/569bccdc4cdc4d63b474f4826aadf87c.jpg)