标签:style class blog code color string
1 staitc void Main(string[] args) 2 { 3 for(int i=1;i<=9;i++)//乘数 4 { 5 for(int j=1;j<=i;j++)//被乘数 6 { 7 Console.Write("{0}*{1}={2} ",i,j,i*j);//循环输出乘法 8 } 9 Console.WriteLine("");//换行 10 } 11 Console.ReadKey(); 12 }
标签:style class blog code color string
原文地址:http://www.cnblogs.com/milovetingting/p/3810576.html