Question is really easy but I do not know how to continue the code.
I want just to count how many times the integers were entered, my code bellow:
int number;
number = int.Parse(Console.ReadLine());
for (int i = 0; i < arr.Length; i++)
{
arr[i] = int.Parse(Console.ReadLine());
}
{
int i = j + 0;
Console.WriteLine("Element - {0} : {1} ", j, arr[i]);
}
Console.ReadLine();