1234567
1234567
........
namespace Test
{
class Program
{
static void Main(string[] args)
{
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
if(x <= y)
Console.Write(x);
else
break;
}
Console.WriteLine();//换行
}
}
}
}
第二层for循环 的判断条件 改为 小于上个层循环的 定义的
for(int x = 0; x < 7 ; i++){ for(int y = 0 ; y < x ; y++ ){ Console.Write(....) } }
循环变量 变量