勤恳睫毛膏

文章
3
资源
0
加入时间
2年10月18天

高精度乘法(仅整数位)

All in code.//实现任意位的大整数相乘,修改N和M即可 #include<stdio.h>#include<string.h>const int N = 10010;const int M = 2 * 10010;char sn1[N], sn2[N];int n1[N], n2[N], res[N];void big_mul(in...