Hi, I have undefinied problem. Here is my code:
using System;
public class Test
{
public static void Main()
{
int[] tab = new int[100];
for (int i = 0; i < 100; i++)
{
tab[i] = i;
if (tab[i] == 42)
break;
Console.WriteLine(tab[i]);
}
}
}
Why my solution is considered as wrong by Judge? I tried with int[] tab = new int[5] {1, 2, 88, 42, 99}; as described but error was still showing.
In my Visual Studio compiler everything seems to work fine 
If there was similar topic with solution- I’m sorry, but I looked into discussions and didn’t find an answer.