是一道基础题了,,就是个大数相加,,杯具的是,我从4点左右开始做的,一直到现在才ac,,本来是用c++写得,写好后才感觉不太合适,又改用c写了一遍,接下来就杯具了一段时间,一直不知道错哪里了,,,经过一遍一遍的检查才明白是数组忘初始化了,唉!让我花了那么久找错。。。。题目:
The Antique Comedians of Malidinesia prefer comedies to tragedies. Unfortunately, most of the ancient plays are tragedies. Therefore the dramatic advisor of ACM has decided to transfigure some tragedies into comedies. Obviously, this work is very hard because the basic sense of the play must be kept intact, although all the things change to their opposites. For example the numbers: if any number appears in the tragedy, it must be converted to its reversed form before being accepted into the comedy play.
Reversed number is a number written in arabic numerals but the order of digits is reversed. The first digit becomes last and vice versa. For example, if the main hero had 1245 strawberries in the tragedy, he has 5421 of them now. Note that all the leading zeros are omitted. That means if the number ends with a zero, the zero is lost by reversing (e.g. 1200 gives 21). Also note that the reversed number never has any trailing zeros.
ACM needs to calculate with reversed numbers. Your task is to add two reversed numbers and output their reversed sum. Of course, the result is not unique because any particular number is a reversed form of several numbers (e.g. 21 could be 12, 120 or 1200 before reversing). Thus we must assume that no zeros were lost by reversing (e.g. assume that the original number was 12).
-
输入
- The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the reversed numbers you are to add. 输出
- For each case, print exactly one line containing only one integer - the reversed sum of two reversed numbers. Omit any leading zeros in the output. 样例输入
-
3 24 1 4358 754 305 794
样例输出
-
34 1998 1
#include <stdio.h>
#include <string.h>
int main()
{
int kkk;
scanf("%d",&kkk);
while(kkk--)
{
char s1[102],s2[102],s3[102]={'0'},s4[102]={'0'},mmax[102]={'0'},mmin[102]={'0'};
scanf("%s%s",s1,s2);
int ls1=strlen(s1);
int ls2=strlen(s2);
int k=0,kk=0,i,j;
for(i=ls2-1;i>=0;i--)
s4[kk++]=s2[i];
for(j=ls1-1;j>=0;j--)
s3[k++]=s1[j];
if(k>kk)
{
strcpy(mmax,s3);
strcpy(mmin,s4);
}
else
{
strcpy(mmax,s4);
strcpy(mmin,s3);
}
int lmax=strlen(mmax);
int lmin=strlen(mmin);
int l=lmax-1;
for(i=lmin-1;i>=0;i--)
{mmax[l--]+=mmin[i]-'0';}
for(j=lmax-1;j>=1;j--)
{
if(mmax[j]>'9')
{
mmax[j]-=10;
mmax[j-1]++;
}
}
int flag=0;
if(mmax[0]>'9')
{
mmax[0]-=10;
flag=1;
}
int newlmax=strlen(mmax);
while(mmax[newlmax-1]=='0')
newlmax--;
for(i=newlmax-1;i>=0;i--)
{
printf("%c",mmax[i]);
}
if(flag==1)
printf("1");
printf("\n");
}
return 0;
}