zoukankan      html  css  js  c++  java
  • ACM Adding Reversed Numbers(summer2017)

    
    
    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
    
    
     1 /*
     2     author:WTZPT
     3     Time:2017.7.17
     4     Title:Adding Reversed Numbers 
     5 */
     6 #include<stdio.h>
     7 #include<math.h>
     8 #include<iostream>
     9 using namespace std;
    10 int length(int num){  //测试数据长度 
    11     int i = 0;
    12     while(num){
    13         num /= 10;
    14         i++;
    15     }
    16     return i;
    17 }
    18 
    19 int trans(int num ,int len){
    20     int temp,sum;
    21     sum = 0;
    22     while(num){
    23         temp = num % 10;
    24         sum += temp*((int)pow(10.0,(len-1)*1.0));
    25         num /= 10;
    26         len--;
    27         
    28     }
    29     return sum;
    30 }
    31 int main()
    32 {
    33      int n,num1,num2,len1,len2,sum1,sum2,sum,len3,num;
    34     while(cin>>n){
    35         for(int ii = 0 ; ii < n; ii++)
    36         {
    37             sum = 0;
    38             scanf("%d %d",&num1,&num2);
    39             len1 = length(num1); //数据长度 
    40             len2 = length(num2); 
    41             //cout<<len1<<" "<<len2<<endl; 测试获取长度函数 
    42             sum1 = trans(num1,len1);//获得转化后数 
    43             sum2 = trans(num2,len2);
    44             //cout<<sum1<<" "<<sum2<<endl; 测试第一次转化 
    45             sum = sum1 + sum2; 
    46             len3 = length(sum);
    47             num = trans(sum,len3);
    48             cout<<num<<endl;
    49         }
    50         
    51     }        
    52 return 0;
    53 }


    参考:

      http://blog.csdn.net/shiow1991/article/details/7220318

  • 相关阅读:
    虚拟机网络模式
    js读取json包装的map集合
    LeetCode 94:Binary Tree Inorder Traversal
    tornado+ansible+twisted+mongodb运维自己主动化系统开发(四)
    UVA
    解决request.getRemoteAddr()获取的值为0:0:0:0:0:0:0:1这个小问题
    eclipse调试web项目
    Action的mapping.findFoward(forwardName)必须要在struts-config.xml中的对应的action节点配置一个forward节点
    使用struts的时候form用struts的,不用html本身的
    eclipse的源代码编辑窗口可以拖出来单独使用的哦
  • 原文地址:https://www.cnblogs.com/jj81/p/7198004.html
Copyright © 2011-2022 走看看