8 条题解
-
1
#include<bits/stdc++.h> using namespace std; string a[200]; int cnt=0; int main(){ while (cin >> a[cnt]){ cnt++; } for(int i=cnt-1; i>=0; i--){ cout << a[i] << " "; } return 0; }
信息
- ID
- 1093
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- 递交数
- 538
- 已通过
- 217
- 上传者