Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147371 刘子隽bylz 逆序数 C++ 通过 100 0 MS 248 KB 159 2024-05-18 14:58:03

Tests(4/4):


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


测评信息: