码迷,mamicode.com
首页 > 其他好文 > 详细

百鸡问题的求解

时间:2017-04-06 01:21:31      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:print   clu   .com   ima   amp   images   bsp   printf   bre   

/*百鸡问题*/
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
int x,y,z;
printf("\n");
for(x=1;x<20;++x)
{
for(y=1;y<33;y++)
{
z=100-x-y;
if((z%3==0)&&((5*x+3*y+z/3)==100))
break;
}
if(x&&y&&z&&y<34)
{
printf("cook=%d hen=%d chicken=%d\n",x,y,z);

}
}
system("PAUSE");
return 0;
}

技术分享

 

百鸡问题的求解

标签:print   clu   .com   ima   amp   images   bsp   printf   bre   

原文地址:http://www.cnblogs.com/hgr123456/p/6671205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!