3116 高精度練習之加法

2021-08-01 13:23:36 字數 468 閱讀 8904

題目描述 description

給出兩個正整數a和b,計算a+b的值。保證a和b的位數不超過500位。

輸入描述 input description

讀入兩個用空格隔開的正整數

輸出描述 output description

輸出a+b的值

樣例輸入 sample input

3 12

樣例輸出 sample output 15

#include#include#includeusing namespace std;

void f(string a,string b)

if(add==1)

s[cnt++]=1;

for(int i=cnt-1;i>=0;i--)

cout<>a>>b;

f(a,b);

return 0;

}

wikioi 3116 高精度練習之加法

題目描述 description 給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description 讀入兩個用空格隔開的正整數 輸出描述 output description 輸出a b的值 樣例輸入 sample input 3 12 樣例輸出 s...

CODE VS 3116 高精度練習之加法

題目描述 description給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description讀入兩個用空格隔開的正整數 輸出描述 output description輸出a b的值 樣例輸入 sample input 3 12 樣例輸出 samp...

基礎練習 高精度加法

問題描述 輸入兩個整數 a和 b,輸出這兩個整數的和。a和 b都不超過100位。演算法描述 由於 a和 b都比較大,所以不能直接使用語言中的標準資料型別來儲存。對於這種問題,一般使用陣列來處理。定義乙個陣列 a,a 0 用於儲存 a的個位,a 1 用於儲存 a的十位,依此類推。同樣可以用乙個陣列 b...