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

不知道哪里出错,求解

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

            }

        }

    }

}


提问者:想要超能力丶 2018-08-04 21:53

个回答

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

    最后那个Console.WriteLine(); 

    L得大写