2012年3月25日

摘要: #define MAX 110 /******************************* *大整数的加法 *参数:s1,s2为两个以字符串存储的加数 *返回值:无 *******************************/ char result[MAX]; void big_num_add(char * s1,char * s2) { int max_len,len1,len2; int i,k; char * a; char * b; len1 = strlen(s1); len2 = strlen(s2); max_... 阅读全文
posted @ 2012-03-25 19:06 yming0221 阅读(225) 评论(0) 推荐(0)

导航