Пускам код ,който според мен е верен ,а системата ми връща-Not processed yet.
Защо се получава така ?
Ето и кода :
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Allocate_array
{
class Program
{
static void Main(string[] args)
{
var n = int.Parse(Console.ReadLine());
int[] Array = new int[n];
for (int i=0;i<=Array.Length-1;i++)
{ Array[i] = 5 * i; }
for (int i = 0; i <= Array.Length - 1; i++)
{ Console.WriteLine(Array[i]); }
}
}
}