利用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[
相關文章
相關標籤/搜索