摘要: #include #include #include #define Max 2000 void multiply(char *a,char *b,char *c) { int i,j,lena,lenb,*s; lena=strlen(a); lenb=strlen(b); s=(int*)malloc(sizeof(int)*(lena+lenb)); ... 阅读全文
posted @ 2013-07-29 20:13 一杯半盏 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" #include "string.h" /* name:大数加法 author:YouRmyDream */ void sup_addition(char a[],char b[],char c[]) { int c1=strlen(a); int c2=strlen(b); int d,k=0,w=0; int i=c1-1,j=c2-1; whi... 阅读全文
posted @ 2013-07-29 16:57 一杯半盏 阅读(127) 评论(0) 推荐(0) 编辑