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

求解


http://img3.mukewang.com/5b3e1ccf0001400b03600640.jpg

提问者:慕设计3280525 2018-07-05 21:27

个回答

  • Hankin_
    2019-01-13 17:06:47

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
           
                for (int x = 1;x <= 7;x++)
                {
                    for(int y = 1;y <= 7; y++)
                    {
                        if( x == y || 8-x == y)
                        {
                            Console.Write("0");
                            continue;
                        }
                        Console.Write(".");
                    }
                    Console.WriteLine();
                }
               
            }
        }
    }


  • 慕码人3057019
    2018-07-06 01:45:23

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

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

                {

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

                    {

                        if(b==a||b==(8-a))

                        Console.Write("o");

                        else

                        Console.Write(".");

                    }

                    Console.WriteLine();

                }

                //请完善代码

                

            }

        }

    }