проблем с Microsoft Visual Studio и с judge "for loop c#" 1-20
Здравейте, като се опитам да напиша кода (опростено без да се повтаря 20 пъти) не ми се решава в JUDGE системата а в MVS всичко става точно... Обяснете ми защо
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 20; i++) {
Console.WriteLine(i);
}
Console.ReadKey();
}
}
}