zoukankan      html  css  js  c++  java
  • 九度题目1015:还是A+B

    题目描述:
    读入两个小于10000的正整数A和B,计算A+B。需要注意的是:如果A和B的末尾K(不超过8)位数字相同,请直接输出-1。
    输入:

    测试输入包含若干测试用例,每个测试用例占一行,格式为"A B K",相邻两数字有一个空格间隔。当A和B同时为0时输入结束,相应的结果不要输出。

    输出:

    对每个测试用例输出1行,即A+B的值或者是-1。

    样例输入:
    1 2 1
    11 21 1
    108 8 2
    36 64 3
    0 0 1
    样例输出:
    3
    -1
    -1
    

    100

    #include<stdio.h>
    #include<algorithm>
    #include<iostream>
    #include<stack>
    #include<vector>
    #include<string.h>
    #include<limits.h>
    #include<stdlib.h>
    #include<math.h>
    
    using namespace std;
    
    int main()
    {
        freopen("test.in","r",stdin);
        freopen("test.out","w",stdout);
    
        int a,b,k;
        int aa,bb;
        while(cin>>a>>b>>k&&(a*a+b*b!=0))
        {
            if(k>=6)
                cout<<-1<<endl;
            else
            {
                aa = a%((int)pow(10,k));
                bb = b%((int)pow(10,k));
                if(aa==bb)
                    cout<<-1<<endl;
                else
                    cout<<a+b<<endl;
            }
        }
        fclose(stdin);
        fclose(stdout);
        return 0;
    }
    


    每天早上叫醒你的不是闹钟,而是心中的梦~
  • 相关阅读:
    线程练习-网络买票
    永久储存信息(已完善)
    Linux命令
    oracle(3)
    小结
    java开发中中文编码问题
    double保留两位小数
    oracle(2)
    javadate相关
    分布式
  • 原文地址:https://www.cnblogs.com/vintion/p/4116832.html
Copyright © 2011-2022 走看看