定义一个结构体变量(包括年、月、日),计算该日期在本年中是第几天?dev-c++可运行代码
时间: 2023-12-03 16:15:25 浏览: 88
好的,这是一个C语言问题。下面是代码示例:
```c
#include <stdio.h>
struct Date {
int year;
int month;
int day;
};
int isLeapYear(int year) {
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
int dayOfYear(struct Date date) {
int daysInMonth[] = {31, 28 + isLeapYear(date.year), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int days = date.day;
for (int i = 0; i < date.month - 1; i++) {
days += daysInMonth[i];
}
return days;
}
int main() {
struct Date date = {2022, 10, 1};
printf("%d-%d-%d is the %dth day of the year.\n", date.year, date.month, date.day, dayOfYear(date));
return 0;
}
```
这个程序首先定义了一个 `Date` 结构体,包括年、月、日。然后定义了一个辅助函数 `isLeapYear`,用于判断是否是闰年。接着定义了主函数中的 `dayOfYear` 函数,该函数接受一个 `Date` 类型的参数,返回该日期在本年中的天数。最后在主函数中创建了一个 `Date` 对象 `date`,并输出该日期在本年中的天数。
该程序输出结果为:
```
2022-10-1 is the 274th day of the year.
```
因此,10月1日在2022年中是第274天。
你可以将这段代码复制到Dev-C++中运行。
阅读全文