HPU 1002 A + B Problem II大数
Posted mthoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HPU 1002 A + B Problem II大数相关的知识,希望对你有一定的参考价值。
A + B Problem II
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 261413 Accepted Submission(s): 50581
2 1 2 112233445566778899 998877665544332211
Case 1: 1 + 2 = 3 Case 2: 112233445566778899 + 998877665544332211 = 1111111111111111110
思路:
代码:
#include <stdio.h> #include <string.h> #define N 10005 char a[N],b[N]; int c[N],d[N]; int main() { int n,i,j,k,len1,len2; scanf("%d",&n); k=n; while(n--) { memset(c,0,sizeof(c));//每次都得清零,所以得放到while循环里面。 memset(d,0,sizeof(d)); getchar(); scanf("%s%s",a,b);//空格也是scanf的切割符! len1=strlen(a); len2=strlen(b); for(i=len1-1,j=0;i>=0;i--)//由于须要逆序保存,所以应该设变量j从0開始!c[j++]=a[i]-'0'; for(i=len2-1,j=0;i>=0;i--) d[j++]=b[i]-'0'; for(i=0;i<1001;i++) { c[i]+=d[i]; if(c[i]>=10) { c[i]-=10; c[i+1]++; } } printf("Case %d:\n%s + %s = ",k-n,a,b); for(i=1000;i>=0&&c[i]==0;i--); if(i>=0) for(;i>=0;i--) { printf("%d",c[i]); } else printf("0"); printf("\n"); if(n!=0) printf("\n"); } return 0; }
以上是关于HPU 1002 A + B Problem II大数的主要内容,如果未能解决你的问题,请参考以下文章