Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
58034 | 王一涵(吃土豆长大的马铃薯) | 逆序输出三个数字 | C++ | Accepted | 0 MS | 248 KB | 127 | 2024-12-01 20:22:08 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<c<<" "<<b<<" "<<a; }