余四元
2021-01-23 21:18
我想达到的效果是:
123
1234
12345
但下面一段代码输出结果是:
123123412345
求问换行哪里有问题?
namespace Test
{
class Program
{
static void Main(string[] args)
{
for(int y=1;y<=3;y++)
for(int x=1;x<=y+2;x++)
{
Console.Write(x);
}
Console.WriteLine();
}
}
}
第一个for循环后面少了一个{,所以下面换行的语句就没起到作用
static void Main(string[] args) {
for (int y = 1; y <= 3; y++){
for (int x = 1; x <= y+2; x++) {
Console.Write(x);
}
Console.WriteLine();
}
}
}
}
Console.WriteLine();改成 Console.Write();
Console.WriteLine();改成 Console.Write();
C#开发轻松入门
254118 学习 · 1459 问题
相似问题