• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
Scalpel-cold
博客园    首页    新随笔    联系   管理    订阅  订阅

高精度运算

#include<bits/stdc++.h>
using namespace std;
const int N=1e2+7; 
int a[N],b[N],c[N],t[N]; 
void init(int t[])     //输入 
{    
    string s;
    cin>>s;
    memset(t,0,sizeof(t));
    t[0]=s.size();
    for(int i=1;i<=t[0];i++)
        t[i]=s[t[0]-i]-'0';             //倒叙输入 
} 

void Highadd()            //加法 
{
    memset(c,0,sizeof(c));
    int len=1;
    int x=0;
    while(len<=a[0]||len<=b[0])
    {
        c[len]=a[len]+b[len]+x;
        x=c[len]/10;
        c[len]%=10;
        len++; 
    } 
    c[len]=x;
    while((c[len]==0)&&(len>1))  len--;for(int i=len;i>=1;i--)
        cout<<c[i];
    cout<<endl;
}    

void Highsub()       //减法 (规定a>b情况) 
{
    memset(c,0,sizeof(c));
    int len=1;
    while(len<=a[0]||len<=b[0])
    {
        if(a[len]<b[len])    //不足向上借位 
        {
            a[len]+=10;
            a[len+1]--;    
        }
        c[len]=a[len]-b[len];
        len++;
    }
    while((c[len]==0)&&(len>1))  len--;
    for(int i=len;i>=1;i--)
        cout<<c[i];
    cout<<endl;
} 

void Highmul()      //乘法
{
    memset(c,0,sizeof(c));
    for(int i=1;i<=a[0];i++)
    {
        int x=0;
        for(int j=1;j<=b[0];j++)
        {
            c[i+j-1]=a[i]*b[j]+x+c[i+j-1];
            x=c[i+j-1]/10;
            c[i+j-1]%=10; 
        }
        c[i+b[0]]=x;
    } 
    int len=a[0]+b[0];
    while((c[len]==0)&&len>1)  len--;
    for(int i=len;i>=1;i--)
        cout<<c[i];
    cout<<endl;
} 
int main() 
{ 
    init(a);
    init(b);
    Highadd();
    Highsub();
    Highmul(); 
    return 0; 
} 
     

 

漫天星辰,繁华时下。心中冷淡,一笑奈何。
posted @ 2017-07-20 14:14  Scalpel-cold  阅读(179)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3