问答详情
源自:4-10 编程练习

出来的图形和题目上的一样,为什么不对呢?求大神讲解下

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

           for (int i = 1; i <= 7; i++) //请完善代码

            {

                Console.WriteLine();

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

                {

                    Console.Write(i == j ||i+j==8 ? "0" : ".");

                }

            }

            Console.ReadLine();

        }

    }

}


提问者:weixin_慕丝2463677 2023-09-14 15:14

个回答

  • weixin_慕丝2463677
    2023-09-14 15:15:46

    笨蛋,这是O