I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.

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

AC代码:

#include<iostream>
#include<string.h>
using namespace std;
#include<stdio.h>
#define MAX 1010
int add1[MAX], add2[MAX], res[MAX];
char tmp1[MAX], tmp2[MAX];
int main()
{
int N, i, j, len, len1, len2, tmp, k;
scanf("%d",&N);
getchar();
for(j=;j<N;j++)
{
memset(add1,,sizeof(add1));
memset(add2,,sizeof(add2));
memset(res,,sizeof(res));
memset(tmp1,,sizeof(tmp1));
memset(tmp2,,sizeof(tmp2));
scanf("%s %s",tmp1,tmp2);
len1 = strlen(tmp1);
len2 = strlen(tmp2);
for(i=len1-,k=;i>=;i--)
add1[k++] = tmp1[i] - '0'; for(i=len2-,k=;i>=;i--)
add2[k++] = tmp2[i] - '0';
tmp = ;
if(len1 >= len2)
{
for(i=;i<=len1;i++)
{
res[i] = (add1[i] + add2[i] +tmp)%;
tmp = (add1[i] + add2[i] +tmp)/;
}
}
else if(len1 < len2)
{
for(i=;i<=len2;i++)
{
res[i] = (add1[i] + add2[i] +tmp)%;
tmp = (add1[i] + add2[i] +tmp)/;
}
}
if(len1 >= len2) len = len1;
else len = len2;
printf("Case %d:\n%s + %s = ",j+, tmp1 , tmp2);
if(res[len]!=) printf("%d",res[len]);
for(i=len-;i>=;i--)
printf("%d",res[i]); printf("\n");
if(j!=N-) printf("\n");
}
return ;
}

my AC:

#include<iostream>
#include<stdio.h>
#include<string.h>
#define N 1010
using namespace std;
char a[N],b[N];
int c[N],d[N],ans[N]; int main(){
int t ;
cin>>t;
getchar();
for(int i=;i<=t;i++)
{
memset(a,,sizeof(a));
memset(b,,sizeof(b));
memset(c,,sizeof(c));
memset(d,,sizeof(d));
memset(ans,,sizeof(ans));
cin>>a>>b;
int la=strlen(a);
int lb=strlen(b);
for(int i=;i<la;i++) c[i]=a[la--i]-'';
for(int i=;i<lb;i++) d[i]=b[lb--i]-'';
int lans;
(la>lb)?lans=la:lans=lb;
int temp=;
for(int i=;i<=lans;i++){
ans[i]=(c[i]+d[i]+temp)%;
temp=(c[i]+d[i]+temp)/;
}
cout<<"Case "<<i<<":"<<endl;
cout<<a<<" + "<<b<<" = ";
for(int i=lans-;i>=;i--)
cout<<ans[i];
cout<<endl;
if(i!=t)cout<<endl;
} }
#include<iostream>
#include<stdio.h>
#include<string.h>
#define N 1010
using namespace std;
char a[N],b[N];
int c[N],d[N],ans[N]; int main(){
int t ;
cin>>t;
getchar();
for(int i=;i<=t;i++)
{
fill(a,a+N,);
fill(b,b+N,);
fill(c,c+N,);
fill(d,d+N,);
fill(ans,ans+N,);
cin>>a>>b;
int la=strlen(a);
int lb=strlen(b);
for(int i=;i<la;i++) c[i]=a[la--i]-'';
for(int i=;i<lb;i++) d[i]=b[lb--i]-'';
int lans;
(la>lb)?lans=la:lans=lb;
int temp=;
for(int i=;i<=lans;i++){
ans[i]=(c[i]+d[i]+temp)%;
temp=(c[i]+d[i]+temp)/;
}
cout<<"Case "<<i<<":"<<endl;
cout<<a<<" + "<<b<<" = ";
for(int i=lans-;i>=;i--)
cout<<ans[i];
cout<<endl;
if(i!=t)cout<<endl;
} }
#include<iostream>
#include<string.h>
using namespace std;
#include<stdio.h>
#define MAX 1010
int add1[MAX], add2[MAX], res[MAX];
char tmp1[MAX], tmp2[MAX];
int main()
{
int N, i, j, len, len1, len2, tmp, k;
scanf("%d",&N);
getchar();
for(j=;j<N;j++)
{
memset(add1,,sizeof(add1)) ; ||用0填充
memset(add2,,sizeof(add2));
memset(res,,sizeof(res));
memset(tmp1,,sizeof(tmp1));
memset(tmp2,,sizeof(tmp2)); tips:函数解释 void *memset(void *s, int ch, size_t n); 函数解释:将s中前n个字节替换为ch并返回s; cin>>tmp1>>tmp2; 量 数 组 长 度:
len1 = strlen(tmp1);
len2 = strlen(tmp2);
for(i=len1-,k=;i>=;i--)||改类型并换顺序
add1[k++] = tmp1[i] - ''; for(i=len2-,k=;i>=;i--)
add2[k++] = tmp2[i] - '';
tmp = ;
if(len1 >= len2)
{
for(i=;i<=len1;i++)
{
res[i] = (add1[i] + add2[i] +tmp)%;
tmp = (add1[i] + add2[i] +tmp)/;
}
}
else if(len1 < len2)
{
for(i=;i<=len2;i++)
{ 进位处理方法:
res[i] = (add1[i] + add2[i] +tmp)%;
tmp = (add1[i] + add2[i] +tmp)/;
}
}
if(len1 >= len2) len = len1;
else len = len2;
printf("Case %d:\n%s + %s = ",j+, tmp1 , tmp2);
if(res[len]!=) printf("%d",res[len]);
for(i=len-;i>=;i--)
printf("%d",res[i]); printf("\n");
if(j!=N-) printf("\n");
}
return ;
}

char tmp1[MAX], tmp2[MAX];

cin>>tmp1>>tmp2;

一长串的字符数组,还可以直接用cin进行输入

2. getchar()必须加

3.字符型与整数类型互换

for(i=len1-1,k=0;i>=0;i--)
add1[k++] = tmp1[i] - '0';

for(i=len2-1,k=0;i>=0;i--)
add2[k++] = tmp2[i] - '0';

其实呢-48也是一样的;

4.错误代码

#include<iostream>
#include<string.h>
#include<stdio.h>
using namespace std;
int main()
{
int t;
long sa,sb;
cin>>t;
getchar();
for(int i=;i<=t;i++)
{
char a[],b[];
for(int j=;;j++)
{
char word=getchar();
if(word>=''&&word<='')
a[j]=word;
else
{
sa=j;
break;
}
}
for(int k=;;k++)
{
char word=getchar();
if(word>=''&&word<='')
b[k]=word;
else if(word=='\n')
{
sb=k;
break;
}
}
cout<<"Case "<<i<<":"<<endl;
for(int m=;m<sa;m++)
{
cout<<a[m];
}
cout<<" + ";
for(int n=;n<sb;n++)
{
cout<<b[n];
}
cout<<" = "; int c[]={};编译有警告
int sc,next,shu,shua,shub;
if(sa>sb)
sc=sa;
else
sc=sb; 出错数据举例, ,所给出结果数组的长度设置有问题,应该分情况讨论,有0单独分情况,并设置不显示
for(int o=sc-;o>=;o--,sa--,sb--)
{
if(sa>)
shua=a[sa-]-;
else
shua=if(sb>) shub=b[sb-]-;
else
shub=;
shu=shua+shub;
if(shu>=)
{
c[o-]=;
shu=shu-;
c[o]+=shu; 进位不全面, ,数据出错,所以不适宜顺序相加机制,应该采用逆序相加,顺序输出的方式
}
else
} for(int p=;p<sc;p++)
cout<<c[p];
cout<<endl;
if(i!=t)
cout<<endl;
}
#include<iostream>

大数问题(相加) A + B的更多相关文章

  1. Java大数相加-hdu1047

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1047 题目描述: 题意有点绕,但是仔细的读了后就发现是处理大数相加的问题.注意:输入数据有多组,每组输 ...

  2. poj 2506 Tiling(递推 大数)

    题目:http://poj.org/problem?id=2506 题解:f[n]=f[n-2]*2+f[n-1],主要是大数的相加; 以前做过了的 #include<stdio.h> # ...

  3. 《剑指offer》 大数递增

    本题来自<剑指offer> 大数的存储 题目: 针对以下问题:大数的存储.大数的相加.大数的运算. 思路: 当数据较大时候,long long数据已经存储不了,借助数组的方式进行存储. 假 ...

  4. Add to Array-Form of Integer LT989

    For a non-negative integer X, the array-form of X is an array of its digits in left to right order.  ...

  5. hdu acm-1047 Integer Inquiry(大数相加)

    Integer Inquiry Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)T ...

  6. 用字符串模拟两个大数相加——java实现

    问题: 大数相加不能直接使用基本的int类型,因为int可以表示的整数有限,不能满足大数的要求.可以使用字符串来表示大数,模拟大数相加的过程. 思路: 1.反转两个字符串,便于从低位到高位相加和最高位 ...

  7. 随机数组&大数相加

    随机生成10个数,填充一个数组,然后用消息框显示数组内容,接着计算数组元素的和,将结果也显示在消息框中 一,      设计思路: 先生成随机数数组,再将数组保存在一个字符串中,然后将数组各数字加和, ...

  8. java-两个大数相加

    题目要求:用字符串模拟两个大数相加. 一.使用BigInteger类.BigDecimal类 public static void main(String[] args) { String a=&qu ...

  9. HDU 1018 大数(求N!的位数/相加)

    Big Number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total ...

  10. POJ 1503 Integer Inquiry(大数相加,java)

    题目 我要开始练习一些java的简单编程了^v^ import java.io.*; import java.util.*; import java.math.*; public class Main ...

随机推荐

  1. akka 原理分析优秀博客

    http://www.nyankosama.com/2014/12/15/akka-source/ http://blog.csdn.net/aigoogle/article/details/4210 ...

  2. Linux常用命令之rpm安装命令

    转自:http://www.cnblogs.com/datasyman/p/6942557.html 在 Linux 操作系统下,几乎所有的软件均通过RPM 进行安装.卸载及管理等操作.RPM 的全称 ...

  3. SpringBoot(五) 番外---Docker

    Docker 是一个开源的应用容器引擎,基于 Go 语言 并遵从Apache2.0协议开源. Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级.可移植的容器中,然后发布到任何流行的 Li ...

  4. 《鸟哥的Linux私房菜》笔记——02. 关于Linux

    Unix 历史 1969年以前:伟大的梦想--Bell, MIT 与 GE 的「Multics」系统 1969年:Ken Thompson 的小型 file server system 1973年:U ...

  5. SpringMVC-注解映射器和适配器_20190323

    1 注解映射器和适配器 1.1 注解映射器spring3.1之前默认加载映射器是org.springframework.web.servlet.mvc.annotation.DefaultAnnota ...

  6. LCD段码驱动

    假如要第3个数码关显示“8.”,则3A-3D均得为1,即Seg3和Seg4均得为1.假设模具Seg和驱动芯片Seg对应,则只需往HT1621的地址Seg3和Seg4分半发送0xF. 注意:HT1621 ...

  7. c++string类的简单介绍

    #include "iostream" #include "string" using namespace std; /*@author:浅滩 *family: ...

  8. 一个简单的MyBatis项目(应用)

    ### 1. MYBATIS简介  MYBATIS是持久层框架,大大的简化了持久层开发.  当使用MYBATIS框架时,开发人员不必再编写繁琐的JDBC代码,只需要定义好每个功能对应的抽象方法与需要执 ...

  9. bootstrap 因跳页黑色背景无法关闭

    只需要在跳页之前加上如下代码: $(".modal-backdrop").remove();

  10. 用shell写一个简单DHCP配置脚本

    轩轩写的这个小脚本,主要是可以进行对dhcp服务的安装.简单配置.开启.关闭/查看状态等情况 使用呢非常简单,按照步骤进行准确的设置就可以啦 #!/bin/bashyum -y install dhc ...