比赛 防止颓废的小练习v0.15 评测结果 AAAAAAAAAA
题目名称 数字反转 最终得分 100
用户昵称 ciyou 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-17 21:17:04
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<stack>
using namespace std;

int N;
int is_negative=0;
stack<int> number;
int main(){
    freopen("reverse.in","r",stdin);
    freopen("reverse.out","w",stdout);
    cin>>N;
    if(N<0){
        N=-N;
        cout<<"-";
    }

    if(N==0){
        cout<<0;
        fclose(stdin);
        fclose(stdout);
        return 0;
    }
    while(N%10==0){
        N/=10;
    }

    while(N>0){
        cout<<(N%10);
        N/=10;
    }
    fclose(stdin);
    fclose(stdout);
    return 0;
}