我要解决的问题如下:
我经常纠结于在某一天我应该穿短裤还是长裤。请给我写一个名为的函数来帮助我做出决定isShortsWeather
它应该接受一个数字参数,我们将调用它temperature
(但你可以随意命名)。
如果temperature
大于或等于 75,则返回true
。
否则,返回false
本练习假设temperature
温度为华氏度
预期结果:
isShortsWeather(80) //true
isShortsWeather(48) //false
isShortsWeather(75) //true
我写的代码是:
function isShortsWeather(temperature) {
if (temperature < 75); {
return false;
}
if (temperature >= 75) {
return true;
}
}
作为片段:
function isShortsWeather(temperature) {
if (temperature < 75); {
return false;
}
if (temperature >= 75) {
return true;
}
}
console.log(isShortsWeather(80)) //true
console.log(isShortsWeather(48)) //false
console.log(isShortsWeather(75)) //true
请帮助我,告诉我我的代码有什么问题以及我应该如何解决这个问题。我觉得我比较接近解决它。谢谢!
隔江千里
catspeake
慕森王
守候你守候我
慕姐8265434
相关分类