How to put odd numbers in ascending order?
int c = 0;
int[] numeros = { 10, 5, 20, 60, 1, 5, 8, 30, 11, 20, 25, 30, 50 };
Console.Write("Números pares");
foreach (int num in numeros)
{
if (num % 2 == 0)
{
Console.Write(num + ",...
asked by
04.09.2017 / 09:20