【题解】洛谷P1307数字反转[NOIP2011普及] 模拟

题目链接
洛谷新手村拖了快一年才搞定(大雾

#include
#include
#include
const int N=110;
char pre[N];
char num[N];
int cnt;
int main()
{
    scanf("%s",pre);
    if(pre[0]=='-')num[0]='-',cnt=1;
    if(strlen(pre)==2)num[1]=pre[1];
    else
    {   
        int top=strlen(pre)-1;
        while(pre[top]=='0')top--;
        for(int i=top;i>=0;i--)
        {

            if(!isdigit(pre[i]))break;
            num[cnt++]=pre[i];
        }
    }
    num[cnt]='\0';
    printf("%s\n",num);
    return 0; 
}

你可能感兴趣的:(NOIP,洛谷,模拟)