#2
天使梦魔2014-11-19 10:37
|
#include<iostream>
#include<iomanip>
#include<cmath>
#include<stdio.h>
using namespace std;
int main()
{
int x,y,z;
for(x=0;x<=20;x++)
{
for(y=0;y<=33;y++)
{
for(z=0;z<=100;z++)
{
if((x*5+y*3+z/3==100)&&(x+y+z==100)&&(z%3==0))
cout<<"cock="<<x<<",hen="<<y<<",chicken="<<z<<endl;
}
}
}
return 0;
}