标签:乘法 lin int for for循环 循环 read console 乘法表
for (int a = 1; a <= 9; a++)
{
for (int b = 1; b <= a; b++)
{
Console.Write(a + "*" + b + "=" + a * b + "\t");
}
Console.WriteLine();
}
Console.ReadLine();
运用for循环;
标签:乘法 lin int for for循环 循环 read console 乘法表
原文地址:http://www.cnblogs.com/tydy9891-/p/7587992.html