第3週目プロジェクト4-(1)百元で百鶏を買う問題
983 ワード
<p align="left">opyright (c) 2016,
All rights reserced.
:main.cpp
:
:2016.3.17</p> ;
#include <iostream>
using namespace std;
int main()
{
int x,y;
double z;
for(y=0;y<=33;y++)
{
for(x=0;x<=20;x++)
{
for(z=0;z<=300;z++)
{
if(x+y+z==100&&5*x+3*y+z/3==100)
cout <<x<<" "<<y<<" "<<z<< endl;
}
}
}
return 0;
}
<img src="http://img.blog.csdn.net/20160317083322129" alt="" />
: , , 。