noi 1738 大整數減法

2021-07-26 21:02:05 字數 723 閱讀 2667

總時間限制: 

1000ms 

記憶體限制: 

65536kb

描述

求兩個大的正整數相減的差。

輸入共2行,第1行是被減數a,第2行是減數b(a > b)。每個大整數不超過200位,不會有多餘的前導零。

輸出一行,即所求的差。

樣例輸入

9999999999999999999999999999999999999

9999999999999

樣例輸出

9999999999999999999999990000000000000

//noi_1982

#include#include#include#include#includeusing namespace std;

int c[205]=,d[205]=;

void initial(int a)

for(int i=a[0];i>=1;i--)

}void printa(int a)

for(int i=1;i<=a[0];i++)

if(a[a[0]+1]) a[0]++;

}int compareab(int a,int b){

if(a[0]>b[0]) return 1;

if(a[0]=1;i--){

if(a[i]>b[i]) return 1;

else if(a[i]

大整數 減法

本文主要給出大數減法的一般思路。關於大數的一般性闡述可以參看大整數 加法 demo這篇部落格。基本來說,還是大整數的那套思路。要進行處理的數字,超過了計算機語言所能提供型別的最大範圍。只能自己寫陣列儲存每一位數字。由於不是內建型別,所以沒有相應操作的支援。只能自己寫,人工模擬減法操作。當然,具體寫的...

大整數減法

include stdafx.h include substr.h includeusing namespace std define max lenth 201 void sub int len,int bignuma,int bignumb printf d n 10 bignuma 0 els...

大整數減法

求兩個大的正整數相減的差。共2行,第1行是被減數a,第2行是減數b a b 每個大整數不超過200位,不會有多餘的前導零。一行,即所求的差。跟加法一樣,從後向前按位減法,不夠減則向前借位。include include define max 202 最高位為200 int main for j 0 ...