大整數減法

2022-08-17 15:57:15 字數 520 閱讀 5991

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

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

一行,即所求的差。

9999999999999999999999999999999999999

9999999999999

9999999999999999999999990000000000000
#include #include using namespace std;

int main()

while (ai > -1)

while (ansi > -1 && ans[ansi] == 0) --ansi;

while (ansi > -1) cout << ans[ansi--];

return 0;

}

其實這個題的難度是中下,按照常規思路解決即可。

大整數 減法

本文主要給出大數減法的一般思路。關於大數的一般性闡述可以參看大整數 加法 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 ...