Run ID:149630

提交时间:2026-03-15 13:14:03

#include <bits/stdc++.h> using namespace std; int main() { int a[10]; for (int i = 0; i < 10; i++) { cin >> a[i] ; } for (int i = 0; i < 10; i++) { cout << a[i] << " "; } return 0; }