关于for循环和while循环的转换
static void Main(string[] args)
{
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= y; x++)
{
Console.Write(x);
}
Console.WriteLine();//换行
}
}
第二个for循环能改成while循环吗?本人愚拙,望大神赐教。