#include #include using namespace std; int main() { int x[5]; // declare an array (has a dimension of 10, 10 elements) for (int i = 0; i < 5; i++) { x[i] = rand() % 11 + 10; // random number between 10 and 20 } for (int i = 0; i < 5; i++) { cout << x[i] << endl; } }