P1601 A+B Problem(高精)

Posted 自为

tags:

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

题目背景

题目描述

高精度加法,x相当于a+b problem,[b][color=red]不用考虑负数[/color][/b]

输入输出格式

输入格式:

分两行输入a,b<=10^500

输出格式:

输出只有一行,代表A+B的值

输入输出样例

输入样例#1:
1
1
输出样例#1:
2
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 using namespace std;
 6 const int MAXN=100001;
 7 char a1[MAXN],b1[MAXN];
 8 int a[MAXN],b[MAXN];
 9 int ans[MAXN];
10 int x;
11 int main()
12 {
13     scanf("%s %s",a1,b1);
14     int la=strlen(a1);int lb=strlen(b1);
15     for(int i=0;i<la;i++)
16         a[i]=a1[la-i-1]-48;
17     for(int i=0;i<lb;i++)
18         b[i]=b1[lb-i-1]-48;
19     int i=0;
20     for(i=0;i<max(la,lb);i++)
21     {
22         ans[i]=(a[i]+b[i]+x)%10;
23         x=(a[i]+b[i]+x)/10;
24     }
25     ans[i]=x;
26     int lc=max(la,lb);
27     int flag=0;
28     for(int i=lc;i>=0;i--)
29     {
30         if(ans[i]==0&&flag==0&&i>0)
31             continue;
32         else flag=1;
33         printf("%d",ans[i]);
34     }
35     
36     return 0;
37 }

 

以上是关于P1601 A+B Problem(高精)的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P1601 A+B Problem(高精) 题解

洛谷 P1303 A*B Problem(高精度乘法) 题解

洛谷P1480 A/B Problem(高精除高精)

洛谷 P1932 A+B A-B A*B A/B A%B Problem(高精度板子)

A + B problem 高精度

luogu_1601 A+B Problem(高精)