Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
354758 | 顾李奕 | 【C1-5】交换两位数 | C++ | Accepted | 100 | 2 MS | 248 KB | 137 | 2025-10-06 14:56:03 |
#include<iostream> using namespace std; int main(){ int b,g,s; cin>>b; g=b/1%10; s=b/10%10; cout<<g<<s<<endl; return 0; }