大整数加法

Posted ac-ac

tags:

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

思想:逢十进一,将大的数字转化为字符串存储。

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 1000;
int a[maxn];
int b[maxn];
int c[maxn];
char s[maxn];
char t[maxn];
int main(void)
{
    cin>>s;
    cin>>t;
    int lens = strlen(s);
    int lent = strlen(t);
    for(int i = 0; i < lens; i++)
        a[lens-i] = s[i]-0;
    for(int i = 0; i < lent; i++)
        b[lent-i] = t[i]-0;
    int lenc = 1;
    int x = 0;
    while(lenc<=lens||lenc<=lent)
    {
        c[lenc] = a[lenc]+b[lenc]+x; 
        x = c[lenc]/10;
        c[lenc] = c[lenc]%10;
        lenc++;
    }
    c[lenc] = x;
    while(c[lenc]==0)
        lenc--;
    for(int i = lenc; i >= 1; i--)
        cout<<c[i];
    cout<<endl;
    return 0;
}

 

以上是关于大整数加法的主要内容,如果未能解决你的问题,请参考以下文章

大整数加法 HDU1002

HDU - 1002 A + B Problem II (大整数加法)

大整数加法和大整数乘法

1151: 大整数加法(正数)

PHP 大数字加法 大整数加法

大整数加法