I'm trying to list the numbers that the user types but I'm not finding the function, can anyone give me a light?
class Program
{
static void Main(string[] args)
{
int[] atividade = new int[6];
for (int i = 1; i < 6; i++)
{
Console.WriteLine("Insira o " + i + "° numero: ");
atividade[i] = Int32.Parse(Console.ReadLine());