习题2.3 old bill

描述
Among grandfather’s papers a bill was found. 72 turkeys $679 The first and the last digits of the number that obviously represented the total price of those turkeys are replaced here by blanks (denoted _), for they are faded and are illegible. What are the two faded digits and what was the price of one turkey? We want to write a program that solves a general version of the above problem. N turkeys $XYZ The total number of turkeys, N, is between 1 and 99, including both. The total price originally consisted of five digits, but we can see only the three digits in the middle. We assume that the first digit is nonzero, that the price of one turkeys is an integer number of dollars, and that all the turkeys cost the same price. Given N, X, Y, and Z, write a program that guesses the two faded digits and the original price. In case that there is more than one candidate for the original price, the output should be the most expensive one. That is, the program is to report the two faded digits and the maximum price per turkey for the turkeys.
输入描述:
The first line of the input file contains an integer N (0XYZ.
输出描述:
For each case, output the two faded digits and the maximum price per turkey for the turkeys.

#include 

int main() {
    int n, x,y,z,price = 0,a,b;
    while (scanf("%d %d %d %d", &n, &x,&y,&z) != EOF) { 
    }
    for(int i = 1;i < 10;i++)
        for(int j = 0;j < 10;j++)
        {
            int t = i*10000+x*1000+y*100+z*10+j;
            if(t%n == 0 && t/n>price)
            {
                a = i;
                b = j;
                price = t/n;
            }
            
        }
        if(price == 0)
            printf("0");
        else
            printf("%d %d %d",a,b,price);
    return 0;
}

暴力遍历即可

你可能感兴趣的:(王道机试指南,数据结构)