Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
44882 奚晨瑞 倒序数 C++ Accepted 0 MS 248 KB 134 2024-04-07 14:44:13

Tests(4/4):


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


Judgement Protocol: