百钱白鸡(for循环的练习)
Posted lsqbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百钱白鸡(for循环的练习)相关的知识,希望对你有一定的参考价值。
<!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循环的练习)的主要内容,如果未能解决你的问题,请参考以下文章