问答详情
源自:4-9 C#循环结构之嵌套循环

代码的过程

不会写

提问者:慕虎1133402 2017-12-03 15:03

个回答

  • 慕粉4364288
    2018-04-25 20:28:23

     static void Main(string[] args)

            {

                for (int y = 1; y <= 7; y++)

                {

                    for (int x = 1; x <= y; x++)

                    {

                        Console.Write(x);

                    }

                    Console.WriteLine();

                }

               

            }


  • 慕无忌1273438
    2017-12-03 16:19:34

    ?把内循环的7改为外循环的y就行了,还是看不懂代码?