67};6869booloperator<(bignum &a,bignum &b){//小于70if(a.l!=b.l)returna.l<b.l;71for(inti=a.l;i>=1;i--)if(a.c[i]!=b.c[i])returna.c[i]<b.c[i];72return0;73}7475booloperator>(bignum &a,bignum &b){//大于76returnb<a;77}7879booloperator==(bignum &a,bignum &b){...
洛谷P1932 A+B A-B A*B A/B A%B Problem(高精度板子) 目录 传送门 解题思路 AC代码 传送门解题思路板子没啥好讲的。 就是要注意以下几点:进位时条件是 ⩾10⩾10 而不是 >10>10。string中的某个位置若没有初始化,会炸,所以要在读入的字符串最后加上0。
洛谷P1932 A+B A-B A*B A/B A%B Problem(高精度板子),##传送门##解题思路板子没啥好讲的。就是要注意以下几点:进位时条件是\(\geqslant10\)而不是\(>10\)。string中的某个位置若没有初始化,会炸,所以要在读入的字符串最后加上0。##AC代码#include<iostream>#include<