题目链接:https://www.luogu.com.cn/problem/P5705
这一题就是对一个字符串进行翻转,可以使用string
容器的reverse
翻转函数。
注意这里的字符串需要处理一下前导0
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>using namespace std;string s;int main(){
cin >> s;reverse(s.begin(), s.end());while (s.size()){
if (s[0] == '0') s.erase(0, 1); else break;}cout << s << endl;return 0;
}