Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
56233 yuboyuan 倒序数 C++ 通过 1 MS 264 KB 268 2024-11-09 22:25:15

Tests(4/4):


#include<iostream> #include<cmath> using namespace std; int main() { int n,a,m; cin>>n; for(m=0;n>=pow(10,m);m++){} for(int i=0;i<m;i++) { a=n; a/=(int)pow(10,i); a%=10; cout<<a; } return 0; }


测评信息: