题目1003:A+B

Posted AlvinZH

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目1003:A+B相关的知识,希望对你有一定的参考价值。

题目链接:http://ac.jobdu.com/problem.php?pid=1003

详解连接:https://github.com/Pacsiy/JobDu

参考代码:

//
// Created by AlvinZH on 2017/4/24.
// Copyright (c) AlvinZH. All rights reserved.
//

#include <iostream>
using namespace std;

int main()
{
    string s1,s2;
    long long n1,n2;
    while(cin>>s1>>s2)
    {
        n1=0;n2=0;
        for(int i=0;i<s1.length();i++)
            if(s1[i]!=,&&s1[i]!=-)
                n1=n1*10+s1[i]-48;
        if(s1[0]==-) n1=-n1;
        for(int i=0;i<s2.length();i++)
            if(s2[i]!=,&&s2[i]!=-)
                n2=n2*10+s2[i]-48;
        if(s2[0]==-) n2=-n2;
        cout<<n1+n2<<endl;
    }
}

 

以上是关于题目1003:A+B的主要内容,如果未能解决你的问题,请参考以下文章

题目1003:A+B

题目1003:A+B------------------------写的复杂了点

DBSDFZOJ-----1003-----语法百题-----余数

1003.A+B

[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段

HDU1003 Max Sum 解题报告