题解 | #a+b#

a+b

https://www.nowcoder.com/practice/4c39c984ea3848b48e111b8e71ec1dd4

#include <iostream>
#include<vector>
using namespace std;

int main() {
    string a,b;
    while(cin>>a>>b)
    {
        vector<int>v;
        int temp=0;
        int m=a.length(),n=b.length();
        for(int i=0;i<m||i<n;i++)
        {
            if(i<m)temp+=a[m-1-i]-'0';
            if(i<n)temp+=b[n-i-1]-'0';
            v.push_back(temp%10);
            temp=temp/10;
        }
        if(temp!=0)v.push_back(temp);
        for(int i=v.size()-1;i>=0;i--)
        cout<<v[i];
        cout<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务