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

4-9编程题

C#零基础课程的4-9编程题怎么做?

提问者:_JUNZHANG 2017-09-18 16:18

个回答

  • 慕雪2877745
    2018-09-15 18:13:34

    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 <= 7; x++)

                    {

                        Console.Write(x);

                        if(x==y)

                        break;

                    }

                    Console.WriteLine();//换行

                }

            }

        }

    }


  • _JUNZHANG
    2017-09-18 16:33:13

    for (int y = 1; y <= 7; y++)
                {
                    for (int x = 1; x <= y; x++)
                    {
                        Console.Write(x);
                    }
                    Console.WriteLine();
                }