Odpowiedź :
Odpowiedź:
#include <iostream>
#include <cstdlib>
#include <ctime>
int main() {
srand(time(NULL));
int n;
std::cin >> n;
int* tab = new int[n];
for(int i = 0; i < n; i++){
tab[i] = rand() % 100 + 1;
}
for(int i = 0; i < n; i++){
std::cout << tab[i] << std::endl;
}
delete[] tab;
return 0;
}
Wyjaśnienie:
Losowe liczby z przedzialu 1 - 100