Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
36454 C++|刘一阳 倒序数 C++ Accepted 1 MS 256 KB 138 2024-01-13 14:51:39

Tests(4/4):


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


Judgement Protocol: