POJ 1504:Adding Reversed Numbers

网友投稿 615 2022-08-30

POJ 1504:Adding Reversed Numbers

Adding Reversed Numbers

Time Limit: 1000MS

 

Memory Limit: 10000K

Total Submissions: 16738

 

Accepted: 9134

Description

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).

Input

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.

Output

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.

Sample Input

3 24 1 4358 754 305 794

Sample Output

34 1998 1

Source

​​Central Europe 1998​​

你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

#include #include #include using namespace std;int main(){ int ncases,len1,len2,num1,num2,num,y=0,temp,i; string str1,str2; cin>>ncases; while(ncases--) { getchar(); cin>>str1>>str2; y = 0; num1 = 0; num2 = 0; len1 = str1.size(); len2 = str2.size(); for(i=len1-1; i>=0; i--) { num1 *= 10; num1 += str1[i]-'0'; } for(i=len2-1; i>=0; i--) { num2 *= 10; num2 += str2[i]-'0'; } num = num1 + num2; while(num!=0) { temp = num%10; if(temp != 0)y = 1; if(y)cout<

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:汉密尔顿赛后致敬偶像塞纳,被罚款5000欧元!
下一篇:文旅营销新时代,如何玩出营销新花样!(文旅产品营销)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~