#include using namespace std; int main(){ int array[3] = {0, 1, 2}; for (int i = 0; i < 10; i++){ cout << array[i] << "\n"; } }