Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
146141 lgh 反向输出四位数 C++ 通过 100 0 MS 260 KB 206 2024-05-08 12:48:55

Tests(6/6):


#include<bits/stdc++.h> using namespace std; int main() { string s=""; cin>>s; reverse(s.begin(),s.end()); while(s.size()&&s[0]=='0') s.erase(0,1); cout<<s<<endl; return 0; }


测评信息: