标签:style blog io color sp for on div log
/*穷举法*/ /*鸡兔同笼35头,94足,鸡兔各几只?*/ #include<stdio.h> const int Num = 35; const int Foots = 94; int main() { int cN;//鸡 int rN;//兔 for (cN = 0; cN <= 35; cN++) { rN = Num - cN; if (Foots == cN * 2 + rN * 4 ) { printf("鸡:%d,兔:%d\n",cN,rN); } } } //穷举法即枚举所有可能性,最简单的算法,唯一需要注意的是结束枚举的约束条件
标签:style blog io color sp for on div log
原文地址:http://www.cnblogs.com/professorLi/p/4115819.html