f0215.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0215.cpp
  3. // 百钱买百鸡
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. int main(){
  9.   for(int cock=1; cock<=13; ++cock)
  10.     for(int hen=1; hen<=18; ++hen){
  11.       if(7*cock+5*hen+(100-cock-hen)/3-100) continue;
  12.       if((100-cock-hen)%3) continue;
  13.         cout<<"cock:"<<cock<<", hen:"<<hen<<", chick:"<<100-cock-hen<<endl;
  14.     }
  15. }//====================================
  16.