1174:大整數乘法
時間限制: 1000 ms 記憶體限制: 65536 kb
提交數: 8154 通過數: 4549
【題目描述】
求兩個不超過200位的非負整數的積。
【輸入】
有兩行,每行是乙個不超過200位的非負整數,沒有多餘的前導0。
【輸出】
一行,即相乘後的結果。結果裡不能有多餘的前導0,即如果結果是342,那麼就不能輸出為0342。
【輸入樣例】
12345678900
98765432100
【輸出樣例】
思路:高精度乘法
#include
#include
#define a 410
using
namespace std;
string a,b;
int a1[a]
,b1[a]
,c1[a]
,len;
intmain()
while
(len&&c1[len]==0
)len--
;for
(int i=len;i>=
0;i--
)cout<; cout<}
大整數乘法
參考 http hi.baidu.com operationsystem blog item 6e45dd1af1acadf3ae51330b.html 在計算機中,長整型 long int 變數的範圍是 2147483648 至 2147483647,因此若用長整型變數做乘法運算,乘積最多不能超過...
大整數乘法
問題描述 by 計算機演算法設計與分析 王曉東 p17 通常,在分析乙個演算法的計算複雜性時,都將加法和乘法運算當作是基本運算來處理,即將執行一次加法或乘法運算所需的計算時間當作乙個僅取決於計算機硬體處理速度的常數。這個假定僅在計算機硬體能對參加運算的整數直接表示和處理時才是合理的。然而,在某些情況...
大整數乘法。
include using namespace std int multi int num1,int size1,int num2,int size2 int size size1 size2 int ret new int size int i 0 for i 0 iret i 0 for i 0...