Description
One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking various sums of those numbers....
分类:
其他好文 时间:
2014-11-25 14:39:38
阅读次数:
275
解题思路:因为给定的数据是多组,所以我们只需要多次做加法就可以了,将上一次的和又作为下一次加法运算的一个加数。反思:还是题意理解不够清楚,最开始以为只是算三个大数相加,后来才发现是多个,然后注意到当输入a的第一个字符为0的时候结束运算,输出结果。Integer InquiryOne of the f...
分类:
其他好文 时间:
2014-11-24 07:35:30
阅读次数:
191
Martian Addition
Time Limit: 2 Seconds Memory Limit: 65536 KB
In the 22nd Century, scientists have discovered intelligent residents live on the Mars. Martians are very fond of mathematics...
分类:
其他好文 时间:
2014-11-19 20:39:08
阅读次数:
205
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1002解题思路:就是把大的数用数组存放起来,像小学的时候用竖式加法来算两个数相加那样算;反思:思路很简单,可是有很多细节考虑不好,有时候没有进位,有时候又没有输出正确的答案,然后有时候数组长度又开小了什么...
分类:
其他好文 时间:
2014-11-19 18:21:53
阅读次数:
222
思路:使用字符串来表示大数,然后对两个数字字符串使用类似列竖式的方式进行逐位相加求和。123 + 24_____147具体实现:char* BigNumberAddition(const char* number1, const char* number2){ if (!number1 || ...
分类:
其他好文 时间:
2014-11-07 00:49:10
阅读次数:
224
#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
所谓的大数就是用整形存不下的数;EG : 123466789123456789由于数组能够进行逐操作;所以考虑到用数组来逐一存放这个大数的每一位元素;这时候问题来了;1 怎么解决该数的输入以及将其存放到数组里面;2 如何解决进位;3 万一第一位是0如何解决;C语言有一种输入方法为%s;也就是所谓的字...
分类:
其他好文 时间:
2014-10-23 17:35:14
阅读次数:
187
大数相加,求sum=1+111+1111+........+1....111 .
分类:
其他好文 时间:
2014-09-20 20:09:59
阅读次数:
147
大数的相加相乘和阶乘操作都可能会导致结果的溢出,可以把它们转换成字符串,再进行运算,这里需要注意的是,习惯上的加法乘法运算都是从低位开始运算的,先计算个位,个位向高位进位,依次进行直到最高位。字符串表示一个数字的时候如”3476”,它的低位数字在最大下标处,为了与习惯上的操作保持一致,可以先把字符串反转,求出结果之后再把结果反转回来即可。接下来的加法操作就使用了反转的方法,乘法操作也可以使用类似的...
分类:
其他好文 时间:
2014-09-11 02:20:01
阅读次数:
243
//a[n]=a[n-1]+a[n-2]+a[n-3]+a[n-4];
# include
# include
# include
# include
using namespace std;
int a[10000][260]={0}; //每个元素可以存储8位数字,所以2005位可以用260个数组元素存储。
int main()
{
int i,j,n;
a[1][0...
分类:
其他好文 时间:
2014-09-09 16:10:58
阅读次数:
179