摘要: 1 #include 2 #include 3 #include 4 #define max 100//数字位数 5 void add(char *s1,char *s2)//两位大于0的数字加法 6 { 7 int mun1[max+1]={0},mun2[max+1]={0},m,n,i=0,j=0; 8 m=strlen(s1)-1; 9 n... 阅读全文
posted @ 2017-04-21 23:26 编程灬世界 阅读(1285) 评论(0) 推荐(0)