码迷,mamicode.com
首页 > 其他好文 > 详细

网易校招 2018 相反数

时间:2017-11-08 16:05:57      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:include   cstring   type   忽略   一个   cst   begin   整数   highlight   

为了得到一个数的"相反数",我们将这个数的数字顺序颠倒,然后再加上原先的数得到"相反数"。例如,为了得到1325的"相反数",首先我们将该数的数字顺序颠倒,我们得到5231,之后再加上原先的数,我们得到5231+1325=6556.如果颠倒之后的数字有前缀零,前缀零将会被忽略。例如n = 100, 颠倒之后是1. 

输入描述:
输入包括一个整数n,(1 ≤ n ≤ 10^5)



输出描述:
输出一个整数,表示n的相反数

 

输入例子1:
1325

 

输出例子1:
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);
}

  

网易校招 2018 相反数

标签:include   cstring   type   忽略   一个   cst   begin   整数   highlight   

原文地址:http://www.cnblogs.com/masterchd/p/7804190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!