NYoj 272

本文介绍了一个关于反转数字并计算其和的基础编程题。通过使用 C 语言实现,文章详细展示了如何读取两个正整数的反转形式,并计算它们反转后的和。最后,输出这个反转和,同时省略所有前导零。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

是一道基础题了,,就是个大数相加,,杯具的是,我从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
ac代码:

#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; }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值