下面函数的功能是求已知月份,输出该月份的天数((假设该年不是闰年))。 function+showDate(month){+if(month==1||month==3||month==5||mon
时间: 2024-01-02 15:22:38 浏览: 53
08输入年份和月份,输出天数.docx
下面是一个函数,根据已知的月份输出该月份的天数(假设该年不是闰年):
```javascript
function showDate(month){
if(month==1||month==3||month==5||month==7||month==8||month==10||month==12){
return 31;
}
else if(month==4||month==6||month==9||month==11){
return 30;
}
else if(month==2){
return 28;
}
else{
return "Invalid month";
}
}
```
这个函数使用了条件语句来判断月份,并返回对应的天数。如果月份是1、3、5、7、8、10或12,则返回31;如果月份是4、6、9或11,则返回30;如果月份是2,则返回28;否则返回"Invalid month"表示月份无效。
阅读全文