#include int main() { int list[10]={10, 20, 30, 40, 50, 60, 70, 80, 90, 100}, k; for (k=0; k<10; k++) { cout << list[k] << endl; } return 0; }