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

来源:4-10 编程练习

weixin_慕丝2463677

2023-09-14 15:14

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();

        }

    }

}


写回答 关注

1回答

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

    笨蛋,这是O

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254117 学习 · 1459 问题

查看课程

相似问题