【OJ】大整數乘法

思路:普通的每一位相乘,再相加。html 利用string類的insert成員函數向後添加運算結果。注意字符運算和整型運算的區別。ios 1 #include <iostream> 2 using namespace std; 3 int main(){ 4 string a, b, c[200]; 5 int ans[401] = {0}; 6 int tmp
相關文章
相關標籤/搜索