My intention with this code is to show how many numbers are odd and how many are even. (eg: Odd: 3 Par: 2).
for (int i = 0; i < 6;i++)
{
int SePar, SeImpar, cont;
SePar = 0;
SeImpar = 0;
cont = 0;
if (atividade[i] % 2 == 0)
{
SePar = SePar + 1;
}
if (atividade[i] % 2 != 0)
{
SeImpar = SeImpar + 1;
}
cont = cont + 1;
if (cont == 6)
{
Console.WriteLine("par: " + SePar + "Impar: " + SeImpar);
}
}