求解,为什么错了

来源:4-10 编程练习

仙剑莫一兮

2016-11-17 21:14

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

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            int x;
            for(x=1;x<8;x++)
            {
                int y;
                for(y=1;y<8;y++)
                {
                    if(x == y||x+y==8)
                    {
                        Console.Write("O");
                    }
                    else
                    {
                        Console.Write(".");
                    }
                }
                console.writeLine();
            }//请完善代码
           
        }
    }
}


写回答 关注

1回答

  • 小新说他爱骢骢
    2016-11-17 22:17:34

    你的前提是x+y=8

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题