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

正确答案是这样

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

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

            {

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

                {


                    Console.Write(x);

                }

                Console.WriteLine();//换行

            }

            

        }

    }

}


提问者:慕仰qingqing 2021-02-08 14:33

个回答

  • qq_认真且怂_gAFRSY
    2021-02-10 22:58:53

    http://img3.mukewang.com/6023f496000108b304380194.jpg是的。