题解 | #百钱买百鸡问题#

百钱买百鸡问题

https://www.nowcoder.com/practice/74c493f094304ea2bda37d0dc40dc85b

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextInt()) { // 注意 while 处理多个 case
            in.nextInt();
            // a + b + c =100 5a+3b+c/3=100 -> b = 25-7a/4; 因此a必须为4的倍数,而且b为正数情况下,a的最大值为3
            // 鸡翁最多买3只
            for (int i = 0; i < 4; i++) {
                int a = 4 * i;
                int b = 25 - 7 * i;
                int c = 100 - a - b;
                System.out.println(a + " " + b + " " + c);
            }
        }
    }
}

尘封的初中数学向我袭来

全部评论

相关推荐

10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务