码迷,mamicode.com
首页 >  
搜索关键字:超大数相加    ( 3个结果
C语言超大数相加求和、加减乘除算法实现
#include<stdio.h> #include<stdbool.h> #include<string.h> #include<stdlib.h> #defineMAXLEN20 intarr1[MAXLEN]; intarr2[MAXLEN]; charstr1[MAXLEN]; charstr2[MAXLEN]; voidconvertBin(intintNum){ staticintbitSize=32; intmodBin=intNum&am..
分类:编程语言   时间:2016-04-10 01:29:44    阅读次数:564
两个超大数相加
解决超大数相加的问题的一种思路是把整形转化成字符串,废话不多说直接上代码,已经调试通过。 #include #include #include using namespace std; string add(string str1, string str2) { int i; string str; int len_str1 = str1.length(); int len_...
分类:其他好文   时间:2015-03-20 00:06:39    阅读次数:247
超大数相加C语言程序设计
#include<stdio.h> #include<string.h> intmain(intargc,constchar*argv[]){ charone[100],two[100],sum[100]; inttemp=0,lenth,lenthTwo,i,lenthOfSum; scanf("%s",one); getchar();//读取回车字符 scanf("%s",two); lenthTwo=(int)strlen(two); if(strlen(t..
分类:编程语言   时间:2014-11-05 15:02:57    阅读次数:200
3条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!