Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
57412 | zhangweiran | 逆序输出三个数字 | C++ | Accepted | 0 MS | 248 KB | 123 | 2024-11-22 15:46:19 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<c<<" "<<b<<" "<<a; }