提交时间:2025-12-19 14:43:48

运行 ID: 76360

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