Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
438848 顾鑫辰 【C1-5】交换两位数 C++ 通过 100 1 MS 256 KB 150 2026-05-02 20:52:27

Tests(2/2):


#include <iostream> using namespace std; int main(){ int n; cin>>n; int s=n/10; int g=n%10; cout<<g*10+s; return 0; }


测评信息: