我的怎么不会换行的?

来源:4-10 编程练习

慕仰9290566

2017-02-19 16:29

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

           {

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

               {

                   if(x+y==2||x+y==4||x+y==6||x+y==8||x+y==10||x+y==12||x+y==14)

                   {Console.Write("O");}

                   else

                    { Console.Write(".");}

                    

               }

               Console.WriteLine();

           }//请完善代码


写回答 关注

1回答

  • 段子介
    2017-02-19 21:36:26

    换行的是Console.WriteLine()

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题