Run ID:127595
提交时间:2025-07-28 15:39:55
#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; }