为了账号安全,请及时绑定邮箱和手机立即绑定

我的做法是这样的

static void Main(string[] args)

        {

            //请完善代码

            for (int i = 0; i < 7; i++)

            {

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

                {

                    if (j == i || j == 6 - i)

                    {

                        Console.Write("o");

                    }

                    else

                    {

                        Console.Write(".");

                    }

                }

                Console.WriteLine();

            }

        }


正在回答

3 回答

我的和你的基本一样

 static void Main(string[] args)

        {

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

            {

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

                {

                    if(x==y||x==(7-(y-1)))

                    {

                    Console.Write("o");

                    }

                    else

                    {

                    Console.Write(".");

                    }

                }

                Console.WriteLine();

}


0 回复 有任何疑惑可以回复我~

     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.Write("\n");
          }

0 回复 有任何疑惑可以回复我~

很棒的想法


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我的做法是这样的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信