不知道哪里出错,求解

来源:4-10 编程练习

想要超能力丶

2018-08-04 21:53

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

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

            {

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

                {

                    if(y==x||y==(8-x))

                    Console.Write('O');

                    else

                    Console.Write('.');

                }

                Console.Writeline();

            }

        }

    }

}


写回答 关注

1回答

  • 慕粉4251168
    2018-08-05 12:09:08
    已采纳

    最后那个Console.WriteLine(); 

    L得大写

    想要超能力丶

    非常感谢!

    2018-08-05 19:58:01

    共 1 条回复 >

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题