利用C语言实现大数加减法

  大数加法:数组 #include <stdio.h> #include <string.h> #define M 100 //定义了数量M是100做为数组初始化的数量 int main() { int i, j, len_s1, len_s2; // len_s1是字符数组s1的长度, len_s2是字符数组s2的长度, char s1[M], s2[M]; int num1[
相关文章
相关标签/搜索