定義一個結構體變量(包括年、月、日)。計算該日在本年中是第幾天,注意閏年問題。


#include <stdio.h>

struct Date
{
int year;
int month;
int day;
};

int main()
{
struct Date p;
scanf("%d %d %d", &p.year, &p.month, &p.day);
int a[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int s, i;
s = p.day;
for(i = 0; i < p.month - 1; i++)
{
s = s + a[i];
}
if(((p.year % 4 == 0 && p.year % 100 != 0) || p.year % 400 == 0) && p.month > 2)
{
printf("%d", s + 1);
}
else
printf("%d", s);

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM