Keep on going never give up.
for (int i = 1; i < 10; i++) { for (int j = 1; j <= i; j++) { Console.Write("{0}*{1}={2} \t", j, i, j * i); } Console.WriteLine(); } Console.ReadKey();
運行結果:
文章評論