我正在做一个简单的 c# 练习。这就是问题所在:编写一个名为 SquareBoard 的程序,该程序使用两个嵌套的 for 循环显示以下 n×n (n=5) 模式。这是我的代码:
Sample output:
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
这是我的代码:
for (int row = 1; row <=5; row++) {
for (int col = 1;col <row ; col++)
{
Console.Write("#");
}
Console.WriteLine();
}
但这不起作用。谁能帮助我。谢谢你..