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

多行条件判断

时间:2015-10-22 00:01:26      阅读:395      评论:0      收藏:0      [点我收藏+]

标签:

练习

小明身高1.75,体重80.5kg。请根据BMI公式(体重除以身高的平方)帮小明计算他的BMI指数,并根据BMI指数:

  • 低于18.5:过轻
  • 18.5-25:正常
  • 25-28:过重
  • 28-32:肥胖
  • 高于32:严重肥胖

if...else...判断并显示结果:

 

var height = parseFloat(prompt(‘请输入身高(m):‘));
var weight = parseFloat(prompt(‘请输入体重(kg):‘));
var bmi = Math.abs(weight / (height * height));
if (bmi < 18.5) {
    alert(‘过轻‘);
} else if (bmi <= 25) {
    alert(‘正常‘);
} else if (bmi < 28) {
    alert(‘过重‘);
} else if (bmi < 32) {
    alert(‘肥胖‘);
} else {
    alert(‘严重肥胖‘);
}

 

多行条件判断

标签:

原文地址:http://www.cnblogs.com/alone2015/p/4899277.html

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