怎么做?求大神

来源:4-10 编程练习

慕粉1649505508

2017-11-26 11:32

5a1a35ca00014fab10410871.jpg咋做啊!

写回答 关注

3回答

  • 慕粉4364288
    2018-04-25 20:58:46

    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++)

                {

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

                    {

                        if(i==j || i+j==8)

                        {

                            Console.Write("0");

                        }

                        else

                          Console.Write(".");

                    }

                     Console.WriteLine();

                }

               

            }

        }

    }


  • 睿智狂人
    2018-04-22 10:49:28

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using System.Threading.Tasks;


    namespace Test01

    {

        class Program

        {

            static void Main(string[] args)

            {

                const int n = 7;

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

                {

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

                    {

                        if (x == y || x == n - y + 1)

                        {

                            Console.Write("O");

                        }

                        else

                        {

                            Console.Write(".");

                        }

                    }

                    Console.WriteLine();

                }

            }

        }

    }


  • 慕仰229500
    2017-11-26 12:11:38

    static void Main(string[] args)

            {

                for(int i=1;i<8;i++)

                {

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

                    {

                        if(i==j || i+j==8)

                        {

                            Console.Write("O");

                        }

                        else

                        {

                            Console.Write(".");

                        }

                    }

                    Console.WriteLine();

                }

            }

    主要的点就是 if 那判断是不是在对角线上

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题

C#求解大神

回答 2

求大神解答

回答 1

求解惑大神

回答 1

大神求解答

回答 4

求大神解答

回答 2