Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140433 万麟峰 15反转数字 C++ Accepted 0 MS 276 KB 153 2025-12-14 12:24:51

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,m=0; cin>>n; while(n!=0){ m=m*10+n%10; n=n/10; } cout<<m; return 0; }