include lt;iostreamgt;
include lt;ctimegt;
using namespace std;
int main()
srand( time(0) );
int *mas = new int[100];
int even_c = 0, odd_c = 0;
for (int i = 0; i lt; 100; ++i)
mas[i] = 1 + rand() % 100;
if (mas[i] % 2 == 0) even_c++; else odd_c++;
int *even = new int [even_c];
int *odd = new int [odd_c];
int temp = 0;
for (int i = 0; i lt; 100; ++i)
if (mas[i] % 2 == 0) even[temp] = mas[i]; temp++;
temp = 0;
for (int i = 0; i lt; 100; ++i)
if (mas[i] % 2 != 0) odd[temp] = mas[i]; temp++;
delete[] mas;
cout lt;lt; "Even: ";
for (int i = 0; i lt; even_c; ++i)
cout lt;lt; even[i] lt;lt; " ";
cout lt;lt;endl lt;lt; "Odd: ";
for (int i = 0; i lt; odd_c; ++i)
cout lt;lt; odd[i] lt;lt; " ";
-
Вопросы ответы
Статьи
Информатика
Статьи
Физика.
Математика.
Разные вопросы.
Разные вопросы.
Математика.
Разные вопросы.
Математика.
Физика.
Геометрия.
Разные вопросы.