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();
运行结果:
文章评论