js回顾,用if语句编写体重,用三元运算符编写标准体重实例
2021-03-09 18:27
标签:运算符 prompt log 三元运算符 var console function 三元运算 else // 三元运算符 // var i = 10; if语句编写的体重实例 var h = parseInt(prompt(‘身高‘)); if (w if (w >= bw * 0.9) { js回顾,用if语句编写体重,用三元运算符编写标准体重实例 标签:运算符 prompt log 三元运算符 var console function 三元运算 else 原文地址:https://www.cnblogs.com/1171899qq/p/12863025.html
// i %=6;
// var y = i++;
// console.log(y)
// p(180,70)
// p(190,40)
// p(170,90)
// function p(i,w){
// // var i = parseInt(prompt(‘身高‘));
// // var w = parseInt(prompt(‘体重‘));
// var b = (i-80)*0.7;
// w // w>=b*0.9?console.log(‘体重正常‘):
// w>=b*0.8?console.log(‘体重过轻‘):
// console.log(‘猴子‘)
// :
// w // w // console.log("胖子")
// }
var w = parseInt(prompt(‘体重‘));
var bw = (h - 80) * 0.7;
console.log(‘体重正常‘)
} else {
if (w>=bw*0.8){
console.log(‘体重过轻‘)
}
else{
console.log(‘猴子‘)
}
}
}
else{
if(w console.log(‘体重正常‘)
}
else{
if(w console.log(‘体重过重‘)
}
else{
console.log(‘胖子‘)
}
}
}
上一篇:ASP Folder 对象
文章标题:js回顾,用if语句编写体重,用三元运算符编写标准体重实例
文章链接:http://soscw.com/index.php/essay/62394.html