求解

来源:4-10 编程练习

慕设计3280525

2018-07-05 21:27


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

写回答 关注

2回答

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

                }

                //请完善代码

                

            }

        }

    }


C#开发轻松入门

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

254119 学习 · 1459 问题

查看课程

相似问题

跪求解求解

回答 1

求解!??

回答 2

求解!!?

回答 5

求解???

回答 2

求解???

回答 5