Odpowiedź:
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main() {
srand(time(NULL));
int tab[10] = {};
for (int i = 0; i < 10; i++)
{
tab[i] = rand() % 500 + 1;
if(tab[i] % 2 ==0 && tab[i] % 3 == 0)
{
cout << tab[i] <<endl;
}
}
}