Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
12370 slx 倒序数 C++ 通过 0 MS 252 KB 211 2023-03-24 15:52:26

Tests(4/4):


//601160 - 倒序数 #include <bits/stdc++.h> using namespace std; int f(int i){ int temp; while(i>0) { temp=i%10; printf("%d",temp); i=i/10; } } int main(){ int i; cin>>i; f(i); }


测评信息: