题解 | #百钱买百鸡问题#
百钱买百鸡问题
http://www.nowcoder.com/practice/74c493f094304ea2bda37d0dc40dc85b
import java.util.Scanner;
public class Main{
public static void main(String[] args){
for(int x = 0; x<= 20 ; x ++){
for(int y = 0; y<= 33; y++){
int z = 100-x-y;
if(z%3==0 && 5*x+3*y+z/3 ==100 && x+y+z == 100){
System.out.println(x+" "+y+" "+z+" ");
}
}
}
}
}