HDU1002 大数相加

 1 #include <iostream>
 2 #include <iostream>
 3 #include <iomanip>
 4 #include<string>
 5 #include<cstring>
 6 using namespace std;
 7
 8 string A , B;
 9 char a[1010];
10 char b[1010];
11 char result[1010];
12
13 int max(int a,int b)
14 {
15     return a>b?a:b;
16 }
17 int main()
18 {
19     int T;
20     cin>>T;
21     for(int j=1;j<=T;j++)
22     {
23         memset(a,‘0‘,sizeof(a));
24         memset(b,‘0‘,sizeof(a));
25         memset(result,‘0‘,sizeof(a));
26         cin>>A>>B;
27         int len1=A.size(),len2=B.size();
28         int m=len1,n=len2;
29         for(int i=0;i<m;i++)
30         {
31             a[i]=A.at(len1-1);
32             len1--;
33         }
34         for(int i=0;i<n;i++)
35         {
36             b[i]=B.at(len2-1);
37             len2--;
38         }
39         int k=max(m,n);
40
41
42         int t=0;//用于向前进位;
43         for(int i=0;i<=k;i++){
44             if((a[i]-‘0‘)+(b[i]-‘0‘)+t>=10) result[i]=(char)((a[i]-‘0‘)+(b[i]-‘0‘)+t-10+‘0‘),t=1;
45             else  result[i]=(char)((a[i]-‘0‘)+(b[i]-‘0‘)+t+‘0‘),t=0;
46         }
47
48         cout<<"Case "<<j<<":"<<endl;
49         cout<<A<<" + "<<B<<" = ";
50         if(result[k]==‘0‘){
51             for(int i=k-1;i>=0;i--) cout<<result[i];
52         }
53         else{
54             for(int i=k;i>=0;i--) cout<<result[i];
55         }
56         cout<<endl;
57         if(j!=T) cout<<endl;
58
59     }
60     return 0;
61 }

由于数字位数可达1000之多,即使long long也没法计算,那么只能用数组来进行存储,不断进位来解决问题。

HDU1002 大数相加

时间: 2024-11-03 20:50:18

HDU1002 大数相加的相关文章

hdu1002 大数相加问题

这个题对于 几个月前的我简直是噩梦  好在磕磕绊绊终于写出来了 由于自己的问题  还被巨巨嘲讽了 #include<stdio.h>               #include<string.h>               int main()               {               char a[10001], b[10001],c[10001];              int len1,len2;              int i,j=1,n,p

java-两个大数相加

题目要求:用字符串模拟两个大数相加. 一.使用BigInteger类.BigDecimal类 public static void main(String[] args) { String a="8888899999999888";  String b="88888888888888";  String str=new BigInteger(a).add(new BigInteger(b)).toString();  System.out.println(str);

高精度问题之大数相加(原来就是用字符串相加,模拟手算这么简单!)

解题心的: 就是基本的一对一模拟手算..借助c++的string 不用逆序运算了.很方便的补0.  最后处理下前导0的问题. #include <iostream> #include <string> using namespace std; // 实现大数相加 结果存放在num中 void bigIntergerAdd(string &num, string add) { int goBit = 0; // 存放进位 // 先交换下顺序 加数的位数要比较少 if (num

HDU 1047 Integer Inquiry 大数相加 string解法

本题就是大数相加,题目都不用看了. 不过注意的就是HDU的肯爹输出,好几次presentation error了. 还有个特殊情况,就是会有空数据的输入case. #include <stdio.h> #include <vector> #include <string.h> #include <algorithm> #include <iostream> #include <string> #include <limits.h

模板,大数相加

char a[Max],b[Max],c[Max],sum[Max]; void jia(char str1[],char str2[]) { int i,j,k,z; k=0;z=0; for(i=strlen(str1)-1,j=strlen(str2)-1;i>=0||j>=0;i--,j--) //核心,加法以及进位 { if(i>=0) z+=str1[i]-'0'; if(j>=0) z+=str2[j]-'0'; c[k++]=z%10+'0'; z=z/10; }

两个大数相加 ----Javascrit 实现

(function(){ var addLarge = function(n1,n2){ var over = 0; var ret = ""; var len = Math.min(n1.length,n2.length); var sln1 = n1.substr(n1.length - len,n1.length ); var sln2 = n2.substr(n2.length - len,n2.length ); for(var i = len;i > 0; i--)

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

Integer Inquiry Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 11678    Accepted Submission(s): 2936 Problem Description One of the first users of BIT's new supercomputer was Chip Diller. He ex

HDU 1250 Hat&#39;s Fibonacci(Java大数相加)+讲解

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1250 Problem Description A Fibonacci sequence is calculated by adding the previous two members the sequence, with the first two members being both 1. F(1) = 1, F(2) = 1, F(3) = 1,F(4) = 1, F(n>4) = F(n -

UVALive 6270 Edge Case(找规律,大数相加)

转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 找规律,前两个数的和等于后一个数的值: 其实就是大菲波数: 代码如下: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #include<cstdio> #include<cst