Run ID:127592
提交时间:2025-07-28 15:38:19
#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; }