zoukankan      html  css  js  c++  java
  • 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

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

    #include <iostream>
    #include <stdio.h>
    #include <string>
    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<<temp;
                num /= 10;
            }
            cout<<endl;
        }
        return 0;
    }


  • 相关阅读:
    【OpenCV学习】安防监控可疑走动报警
    【OpenCV学习】OpenMP并行化实例
    【OpenCV学习】cvConvert的使用
    【OpenCV学习】Fuzzy Logic模糊逻辑边缘提取
    C# 委托系列(一)将方法作为方法的参数
    关于dev的Gridview控件的行数据的颜色控制,根据不同的值设置不同颜色
    将gridcontrol导出到excel
    DataGridView中将某行设置为当前可见区域第一行
    如何获得窗体上控件相对于屏幕的位置?
    dev 控件 lookupedit 设置选项值
  • 原文地址:https://www.cnblogs.com/im0qianqian/p/5989588.html
Copyright © 2011-2022 走看看