博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1002 大数相加
阅读量:6468 次
发布时间:2019-06-23

本文共 1985 字,大约阅读时间需要 6 分钟。

Input

The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines follow, each line consists of two positive integers, A and B. Notice that the integers are very large, that means you should not process them by using 32-bit integer. You may assume the length of each integer will not exceed 1000.
 
Output
For each test case, you should output two lines. The first line is "Case #:", # means the number of the test case. The second line is the an equation "A + B = Sum", Sum means the result of A + B. Note there are some spaces int the equation. Output a blank line between two test cases.
 
Sample Input
2 1 2 112233445566778899 998877665544332211
 
Sample Output
Case 1: 1 + 2 = 3 Case 2: 112233445566778899 + 998877665544332211 = 1111111111111111110
 
难点是,数据类型最长有32位(4字节或者2字),数值范围是-2147483648~2147483648或者0~4294967295,但题目中指出输入数据位数长度可以达到1000位,10^999>>4294967295,故不能用常规方法
 
具体解决方法是,将数字利用字符串的形式表示,每个字符都是数字,1000个连续字符也没问题,再将两个不同字符串相加得到最终结果。
 
有一次提交时,出现了“Presentation Error”的错误,缘由是输出结果的格式不符合要求,比方少个空格什么的。
1 #include 
2 #include
3 using namespace std; 4 int main() 5 { 6 int n; 7 while(cin>>n)//n为case数 8 { 9 for(int i=1;i<=n;i++)10 {11 string a,b,c;//3个字符串 12 cin>>a>>b;13 int la=a.length()-1,lb=b.length()-1,jw=0,ta,tb,tt,f=0;14 char tc;15 while(la>=0||lb>=0)16 {17 18 if(la<0) ta=0;19 else ta=a[la]-'0';20 if(lb<0) tb=0;21 else tb=b[lb]-'0';22 tt=jw+ta+tb;//tt为a和b两位相加结果 23 jw=tt/10;//jw为进位24 tc=tt%10+'0';//tc为赋值给字符串c之前的一个中转25 if(tc!='0') f=1;//f为进位标志26 c+=tc;27 la--;lb--;28 }29 if(jw>0)30 {31 f=1;32 tc=jw+'0';33 c+=tc;34 }35 36 if(i!=1) cout<
 

转载于:https://www.cnblogs.com/omigia/p/3745917.html

你可能感兴趣的文章
可以免费下载视频素材和模板网站汇总
查看>>
node中非常重要的process对象,Child Process模块
查看>>
Webserver管理系列:3、Windows Update
查看>>
HDOJ 2151
查看>>
open-falcon
查看>>
doc2vec使用说明(一)gensim工具包TaggedLineDocument
查看>>
Q:图像太大,在opencv上显示不完全
查看>>
利用ItextPdf、core-renderer-R8 来生成PDF
查看>>
NavigationController的使用
查看>>
多线程编程之Windows环境下创建新线程
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>
js滚动加载到底部
查看>>
Virtualbox 虚拟机网络不通
查看>>
memcache数据库和redis数据库的区别(理论)
查看>>
我的友情链接
查看>>
MyBatis+Spring结合
查看>>
Office 365之SkyDrive Pro
查看>>
Java Web 高性能开发
查看>>