以下代码在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();
}
}
}
}
请问我的外层那句换行语句放置的位置有问题吗?
WriteLine包括换行,不如改为Write试试