第二周练习 百鸡百钱问题

/*
 *copyright(c) 2014,烟台大学计算机学院
 *All rights reserved
 *文件名称:test.cpp
 *作者:谭泽纯
 *版本:v6.0
 *
 *问题描述: 百鸡百钱
 *输入描述:无
 *程序输出:输出组合
*/
#include <iostream>     
using namespace std;    
int main ()    
{    
    int x,y,z,count=0;    
    for(x=1;x<20;++x)    
        for(y=1;y<33;++y)    
            for(z=1;z<100;++z)    
                if(x+y+z==100&&5*x+3*y+z/3==100)    
               {    
                cout<<"x"<<x<<endl;    
                cout<<"y"<<y<<endl;    
                cout<<"z"<<z<<endl;    
                    
                }    
                return 0;    
    
}

你可能感兴趣的:(第二周练习 百鸡百钱问题)