码迷,mamicode.com
首页 > 其他好文 > 详细

百钱白鸡(for循环的练习)

时间:2019-01-12 12:12:52      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:class   har   tle   console   nbsp   col   round   OLE   back   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>

<body>
</body>
</html>
<script>
    //    百钱百鸡   公鸡2文,母鸡1文,小鸡半文,每种至少一只,100文买100只鸡有多少可能性
// 写条件gj*2 + mj*1 + xj*0.5 == 100  && gj+mj+xj=100
    var num = 0;
    for(var gj = 1 ; gj <= 50 ; gj++){
        for(var mj = 1 ;mj <= 100 ; mj++){
            for(var xj = 1 ; xj <=200 ;xj++){
                if(gj*2 + mj*1 + xj*0.5 == 100  && gj+mj+xj ==100){
                    console.log("公鸡"+gj+"只,母鸡"+mj+"只,小鸡"+xj+"");
                    num ++;
                }
            }
        }
    }
    console.log("总共有"+num+"种可能性");
</script>

 

百钱白鸡(for循环的练习)

标签:class   har   tle   console   nbsp   col   round   OLE   back   

原文地址:https://www.cnblogs.com/lsqbk/p/10259005.html

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