题目1089:数字反转 (分别用C++/Java实现)

题目描述:

    12翻一下是21,34翻一下是43,12+34是46,46翻一下是64,现在又任意两个正整数,问他们两个数反转的和是否等于两个数的和的反转。

输入:

    第一行一个正整数表示测试数据的个数n。
    只有n行,每行两个正整数a和b(0

输出:

    如果满足题目的要求输出a+b的值,否则输出NO。

样例输入:
2
12 34
99 1
样例输出:
46
NO
来源:
#include 
using namespace std;
int r(int a)
{
    int temp=0;
    int x;
    while (a)
    {
        temp=temp*10+a%10;
        a/=10;
    }
    return temp;
}
int main()
{
    int n;
    int a[10000],b[100000];
    int i,j;
    while (cin>>n)
    {
        for (i=0;i>a[i]>>b[i];
        }
        for(j=0;j
Java代码:
import java.util.Scanner;
 
public class Main{
    public static void main(String args[])
    {
        Scanner cin =new Scanner(System.in);
        int []a=new int[1000];
        int []b=new int[1000];
        int []sum=new int[1000];
        int i=0,N;
        while(cin.hasNext())
        {
            N=cin.nextInt();
            for(i=0;i


 
    

你可能感兴趣的:(九度Online,Judge)