Дан целочисленный массив размера n. вывести вначале все содержащиеся в данном массиве четные числа, а затем — все нечетные числа. си шарп

vladEfimenko1 vladEfimenko1    2   29.08.2019 08:00    1

Ответы
NastyaBay2710 NastyaBay2710  06.10.2020 02:26
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace Dcoder
{
public class Program
{
public static void Main(string[] args)
{
Console.Write("Размер массива: ");
int n = Convert.ToInt32(Console.ReadLine());
int[] arr = new int[n];
Random rand = new Random();
for (int i = 0; i < arr.Length; i++)
arr[i] = rand.Next(1, 100);
for (int i = 0; i < arr.Length; i++)
if (arr[i] % 2 == 0)
Console.WriteLine(arr[i]);

Console.WriteLine();

for (int i = 0; i < arr.Length; i++)
if (arr[i] % 2 != 0)
Console.WriteLine(arr[i]);
Console.ReadLine();
}
}
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика