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

百钱买百鸡问题

http://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 的区别
        if (in.hasNextInt()) { // 注意 while 处理多个 case
            int n = 0;
            for(int x =0;x <= 100 / 5;x++){
                double y = (200 - 14 * x) / 8.0;
                double z = 100 - x - y;
                int yi = (int)y;
                if(y == yi && y >= 0 && z >= 0){
                    System.out.println(x + " " + (int)y + " " + (int)z);
                }
            }
        }
    }
}
全部评论

相关推荐

美团 后端开发 总包n(15%是股票)
点赞 评论 收藏
分享
有工作后先养猫:太好了,是超时空战警,我们有救了😋
点赞 评论 收藏
分享
牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务