高精度乘法(仅整数位) 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... # 悟已往之不谏 2023-09-15 49 点赞 0 评论 74 浏览