zoukankan      html  css  js  c++  java
  • hdu 1229 超级大水题

     
    Time Limit: 1000MS   Memory Limit: 32768KB   64bit IO Format: %I64d & %I64u

     Status

    Description

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

    Input

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

    Output

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

    Sample Input

    1 2 1 11 21 1 108 8 2 36 64 3 0 0 1
     

    Sample Output

    3 -1 -1 100
     

    题意很简单,直接上代码。

    #include<stdio.h>  
    int main()  
    {  
        int a,b,k;  
        while(~scanf("%d%d%d",&a,&b,&k))
    {  
     
            int f=1;  
            for(int i=1;i<=k;++i)  
               f=f*10;  
        if(a%n == b%n)  
            printf("-1
    ");  
        else  
            printf("%d
    ",a+b);  
        }  
    }  
  • 相关阅读:
    全民医疗
    SpringMVC
    Mybatis 缓存策略
    不要追涨杀跌
    我只认比特币
    ETH反思
    世界是熵增的
    切片最好还是传引用
    rxgo示例
    11月份的计划
  • 原文地址:https://www.cnblogs.com/hfc-xx/p/4758799.html
Copyright © 2011-2022 走看看