输入年,输出该年每个月的天数。其中1、3、5、7、8、10、12月有31天,4、6、9、11月有30天,2月平年有28天,闰年有29天。判断闰年的条件是:能被 4 整除但不能被 100 整除,或者能被 400 整除c语言代码
时间: 2024-10-21 17:02:38 浏览: 59
这道题目是要求输入年份,然后输出该年每个月的天数,其中1、3、5、7、8、10、12月有31天,4、6、9、11月有30天,2月平年有28天,闰年有29天。闰年的判断条件是:能被4整除但不能被100整除,或者能被400整除。
以下是一个C语言的例子,可以实现该功能:
```c
#include <stdio.h>
int main() {
int year;
printf("请输入年份: ");
scanf("%d", &year);
int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; // 定义每个月的天数,2月先默认为28天
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) { // 判断是否是闰年,如果是,则将2月的天数修改为29
days[2] = 29;
}
printf("%d年份的每个月的天数如下:\n", year); for (int i = 1; i <= 12; i++) {
printf("%d月有%d天\n", i, days[i]);
}
return 0;
}
```
--相关问题--:
相关问题
输出每个月的天数:输入年year,输出该年1到12月的天数
好的,我可以回答这个问题。一般来说,每个月的天数是固定的,但是闰年的2月有29天。以下是输出每个月天数的代码:
#include <stdio.h>
int main() {
int year, month, days;
int days_in_month[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
printf("请输入年份:");
scanf("%d", &year);
for (month = 1; month <= 12; month++) {
if (month == 2 && ((year % 4 == && year % 100 != ) || year % 400 == )) {
days = 29;
} else {
days = days_in_month[month - 1];
}
printf("%d年%d月有%d天\n", year, month, days);
}
return ;
}
希望这个代码可以帮到你!
输入年,输出该年的1到12月每月天数
好的,我可以帮你解决这个问题。以下是我编写的 Python 代码:
```python
def days_in_month(year):
days = []
for month in range(1, 13):
if month == 2:
if year % 4 == 0 and (year % 100 != 0 or year % 400 == 0):
days.append(29)
else:
days.append(28)
elif month in [4, 6, 9, 11]:
days.append(30)
else:
days.append(31)
return days
year = int(input("请输入年份:"))
days = days_in_month(year)
for i, day in enumerate(days):
print("{}年{}月有{}天".format(year, i+1, day))
```
你可以将这段代码复制到 Python 环境中运行,然后输入年份,即可得到该年每个月的天数。希望对你有所帮助!
阅读全文