CSP历年复赛题-P1307 [NOIP2011 普及组] 数字反转
原题链接:https://www.luogu.com.cn/problem/P1307
题意解读:将整数反转。
解题思路:
1、读入整数n
2、记录正负,n转正数
3、定义结果num = 0,每次提取n的个位数,num = num * 10 + n % 10,然后n = n / 10
4、直到处理完n的每一个数字
5、结果是num,根据记录的正负输出
100分代码:
#include <bits/stdc++.h>
using namespace std;
int main()
{
int s = 1; //正数为1,负数为-1
int n;
cin >> n;
if(n < 0)
{
s = -1;
n = -n;
}
int num = 0;
while(n)
{
num = num * 10 + n % 10;
n /= 10;
}
cout << num * s;
}