问题:小鸡每只0.5元,公鸡每只2元,母鸡每只3元,100元买100只鸡,列出所有的购鸡方案
package demo;
public class Demo {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int a = 0;a<33;a++){
for(int b = 0;b<50;b++){
int c = 100-a-b;
if(0.5*c+2*b+3*a==100){
System.out.printf("母鸡%d只,公鸡%d只,小鸡%d只。\n",a,b,c);
}
}
}
}
}
注:鉴于作者水平有限,如有更好的算法欢迎评价。