记录编号 |
173259 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2011]数字反转 |
最终得分 |
100 |
用户昵称 |
啊吧啦吧啦吧 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.016 s |
提交时间 |
2015-07-28 11:41:35 |
内存使用 |
3.15 MiB |
显示代码纯文本
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
string num;
bool pd = false;
main()
{
ifstream fin("reverse.in");
ofstream fout("reverse.out");
#define cin fin
#define cout fout
ios::sync_with_stdio(false);
cin >> num;
if(num[0] == '-'){
cout << '-';
pd = 1;
}
int i = num.size() - 1;
while (num[i] == '0')
i--;
for(; i > 0; --i)
cout << num[i];
if(! pd)
cout << num[0];
}