HNFMS_JWX @ 2018-04-11 20:55:47
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a,b;
int x=0;
bool mmp=false;
cin>>a;
b=a;
for (int j=a.size()-1;j>0;j--)
{
if(b[j]=='0' && !mmp) continue;
mmp=true;
if (a[0]=='-')
{
if (x==0)
{
cout<<b[0];
x++;
}
cout<<b[j];
}
else
{
cout<<b[j];
if (j==1)
cout<<b[0];
}
}
return 0;
}
by 帅气的陈子祺 @ 2020-10-15 22:40:58
如果数字的末尾有一个或多个0,是要省略0再输出的,你可能没有考虑末尾为0的情况;