f0215.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0215.cpp
- // 百钱买百鸡
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- int main(){
- for(int cock=1; cock<=13; ++cock)
- for(int hen=1; hen<=18; ++hen){
- if(7*cock+5*hen+(100-cock-hen)/3-100) continue;
- if((100-cock-hen)%3) continue;
- cout<<"cock:"<<cock<<", hen:"<<hen<<", chick:"<<100-cock-hen<<endl;
- }
- }//====================================