标签:include cstring type 忽略 一个 cst begin 整数 highlight
为了得到一个数的"相反数",我们将这个数的数字顺序颠倒,然后再加上原先的数得到"相反数"。例如,为了得到1325的"相反数",首先我们将该数的数字顺序颠倒,我们得到5231,之后再加上原先的数,我们得到5231+1325=6556.如果颠倒之后的数字有前缀零,前缀零将会被忽略。例如n = 100, 颠倒之后是1.
输入包括一个整数n,(1 ≤ n ≤ 10^5)
输出一个整数,表示n的相反数
1325
6556
范围这么小,当然是选择暴力了
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <string> #include <cstring> using namespace std; typedef long long LL; int main() { string str; int a=0 , b=0; // 用来存放 str 代表的数值 cin>>str; int len = str.length(); for(int i=0;i<len;i++) { a = a*10+(str[i]-‘0‘); } reverse(str.begin(),str.end()); for(int i=0;i<len;i++) { b = b*10+(str[i]-‘0‘); } printf("%d\n",a+b); }
标签:include cstring type 忽略 一个 cst begin 整数 highlight
原文地址:http://www.cnblogs.com/masterchd/p/7804190.html