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

nyoj_34_weitijiao

时间:2016-09-11 18:52:53      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

 

#include <iostream>
#include <algorithm>
#include <cstdio>

using namespace std;

int main(){
    int a,b,c;
    scanf("%d %d %d",&a,&b,&c);
    for(int i=10;i<=100;i++){
        if((i-a)/3==0 && (i-b)/5==0 && (i-c)/7==0){
            printf("%d",i);
            return 0;
        }
    }
    printf("No answer");




    return 0;
}

 

nyoj_34_weitijiao

标签:

原文地址:http://www.cnblogs.com/TWS-YIFEI/p/5862254.html

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