码迷,mamicode.com
首页 > 编程语言 > 详细

算法基础一 穷举法

时间:2014-11-22 22:59:06      阅读:253      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!