轉換日期(C)

題目: 給定的整數n,計算一年中的第n天是幾月幾日。 假定年份是平年,即2月有28天。web 解答: #include <stdio.h> struct date{ int month; // 月 int day; // 日 }; typedef struct date Date; Date to_date(int n); int mai
相關文章
相關標籤/搜索