C 計算天數

2021-10-05 22:45:50 字數 725 閱讀 8233

本題要求編寫程式計算某年某月某日是該年中的第幾天。

輸入格式:

輸入在一行中按照格式「yyyy/mm/dd」(即「年/月/日」)給出日期。注意:閏年的判別條件是該年年份能被4整除但不能被100整除、或者能被400整除。閏年的2月有29天。

輸出格式:

在一行輸出日期是該年中的第幾天。

輸入樣例1:

2009/03/02

輸出樣例1:

61輸入樣例2:

2000/03/02

輸出樣例2:

62

#include

#include

using

namespace std;

intmain()

;scanf

("%d/%d/%d"

,&year,

&month,

&day);if

((year%4==

0&&year%

100)

||year%

400==0)

a[2]

=29;for

(int i=

0;i<=month-

1;i++

) n+

=a[i]

;int sum=n+day;

printf

("%d"

,sum)

;return0;

}

C 小白交流博 計算天數

本題要求編寫程式計算某年某月某日是該年中的第幾天。輸入格式 輸入在一行中按照格式 yyyy mm dd 即 年 月 日 給出日期。注意 閏年的判別條件是該年年份能被4整除但不能被100整除 或者能被400整除。閏年的2月有29天。輸出格式 在一行輸出日期是該年中的第幾天。輸入樣例1 2009 03 ...

SQL計算天數

1 計算給定時間段的實際月份天數 select trunc sysdate to date 2013 06 28 yyyy mm dd from dual 2 給定乙個月份計算這個月份的天數 select to char last day to date 2013 07 yyyy mm dd fro...

計算當月天數

let dayarr let date newdate this.year date.getyear this.month date.getmonth 1 當月第一天星期幾 let firstday newdate this.year this.month 1 1 getday 當月天數 個月天數,...