関数calculate_jday マニュアル

(The documentation of function calculate_jday)

Last Update: 2023/6/12


◆機能・用途(Purpose)

日付を1年の先頭からの日数(julian day)に変換する。
Convert a date to the number of days from the beginning of a year (julian day).


◆形式(Format)

#include <mytime.h>
inline int calculate_jday(const int year,const int month,const int day)


◆引数(Arguments)

year 計算の対象とする日付の年(西暦4桁)。
The year (4-digits in A. D.) of the target date.
month 計算の対象とする日付の月。
The month of the target date.
day 計算の対象とする日付の日。
The day of the target date.


◆戻り値(Return value)

year年month月day日に対応するjulian day (1月1日を1とする年内の通し日数)。
The julian day (tbhe number of days from the beginning of the year) corresponding to the given year, month, and day.


◆使用例(Example)

int jday=calculate_jday(2012,2,29);

この例ではjday=60となる。
This example gives jday=60.