#include <iostream>
#include <ctime>
using namespace std;
void main()
{
srand(time(NULL));
setlocale(LC_ALL, "rus");
int SIZE;
cout << "Введите SIZE: "; cin >> SIZE;
int *array = new int[SIZE]; //Динамический массив
for (int i=0; i < SIZE; i++)
{
array[i] = rand() % 20;
cout << array[i] << endl;
}
delete[] array;
}