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

天啦噜,VS里有问题的代码居然在网页编译器里成功通过了!!!

以下代码在VS2015里运行时换行有问题(每个x被输出后都换行了),

但在网页编译器中居然能通过!!!

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

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
           for(int y=1; y<=7; y++ )
            {
                for (int x = 1; x <=7; x++)
                {
                    if (x == y || x == 8 - y)
                     Console.WriteLine('o');
                    else
                     Console.WriteLine('.');
                }
                Console.WriteLine();
            }
              

        }
    }
}

请问我的外层那句换行语句放置的位置有问题吗?

http://img.mukewang.com/570fa17e0001a5a106750439.jpg

提问者:AchingImpact 2016-04-14 21:56

个回答

  • 风逝 去
    2016-04-14 22:20:12
    已采纳

    WriteLine包括换行,不如改为Write试试