C#简单的九九乘法表

for(int i=1;i<10;i++) { for(int j=1;j<=i;j++) { Console.Write("{0}*{1}={2}",j,i,i*j) } Console.WriteLine(); }

原文地址:https://www.cnblogs.com/flms/p/9533237.html