韩信点兵

Posted 千千寰宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了韩信点兵相关的知识,希望对你有一定的参考价值。

/*
    韩信点兵
    相传韩信才智过人,从不直接清点自己军队的人数,只要让士兵先后以三人一排、五人一排、七人一排地变换队
    形,而他每次只掠一眼队伍的排尾就知道总人数了。输入多组数据,每组数据包含3个非负整数a,b,c,表示每种
    队形排尾的人数(a<3,b<5,c<7),输出总人数的最小值(或报告无解)。已知总人数不小于10,不超过100.输入
    到文件结束为止。
*/
# define LOCAL
#include<stdio.h>
#include<time.h>

int main(){
#ifdef LOCAL
    freopen("data.in","r", stdin);
    freopen("data.out","w", stdout);
#endif // LOCAL

    int a, b, c;
    int peoples, cases=0;
    while(scanf("%d %d %d", &a, &b, &c) == 3){
        cases++;

        peoples = -1;
        for(int i = 10; i < 100; i++){
            if((i % 3 == a) && (i % 5 == b) && (i % 7 == c)){
                peoples = i;
            }
        }
        if(peoples > 0){
             printf("Case %d: %d\n", cases, peoples);
        } else {
            printf("Case %d: No Answer\n", cases);
        }
    }

    return 0;
}
/*
[input]
2 1 6
2 1 3

[output]
Case 1: 41
Case 2: No Answer
*/

  

以上是关于韩信点兵的主要内容,如果未能解决你的问题,请参考以下文章

韩信点兵

C语言韩信点兵(容易超时)

c语言韩信点兵

C语言编程:韩信点兵问题拜托各位了 3Q

关于大一的C语言问题,韩信点兵。。

C语言,韩信点兵编程,看看我的错在哪?