码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1015

时间:2017-06-22 00:10:49      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:string   res   code   turn   else   names   algorithm   tmp   namespace   

 

 

 

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int mypow(int k){
    int res=1;
    while(k--){res*=10;}
    return res;
}


int main(){
    int sum;
    int a,b,k;
    while(scanf("%d %d %d",&a,&b,&k)!=EOF){
        int tmp=mypow(k);
        if(a%tmp==b%tmp)
            printf("-1\n");
        else printf("%d\n",a+b);
    }
    return 0;
}

 

oj---九度oj---1015

标签:string   res   code   turn   else   names   algorithm   tmp   namespace   

原文地址:http://www.cnblogs.com/kprac/p/7062087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!