題目描述 description
給出兩個正整數a和b,計算a+b的值。保證a和b的位數不超過500位。
輸入描述 input description
讀入兩個用空格隔開的正整數
輸出描述 output description
輸出a+b的值
樣例輸入 sample input
3 12
樣例輸出 sample output 15
資料範圍及提示 data size & hint
兩個正整數的位數不超過500位
用string來存輸入的整數,獲取兩個整數的位數,然後,用整形陣列來存兩個整數相加的結果。
/*
題目:p3116 高精度練習之加法
*/#include #include using namespace std;
void add2num(string a, string b)
if(carry == 1)s[p++] = 1;
for(i = p-1; i >= 0; i--) cout<> a >> b;
add2num(a, b);
return 0;
}
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...
wiki oi3117 高精度練習之乘法
題目描述 description 給出兩個正整數a和b,計算a b的值。保證a和b的位數不超過500位。輸入描述 input description 讀入兩個用空格隔開的正整數 輸出描述 output description 輸出a b的值 樣例輸入 sample input 3 12 樣例輸出 s...