関数jday2monthday マニュアル

(The documentation of function jday2monthday)

Last Update: 2023/6/12


◆機能・用途(Purpose)

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


◆形式(Format)

#include <mytime.h>
inline void jday2monthday (const int year,const int jday,int ∗month,int ∗day)


◆引数(Arguments)

year 変換を行う年。
The yaer of the conversion.
jday 変換したいjulian day。
The julian day to be converted.
month 月の代入先。 宣言しただけのint型変数に&を付けて与える。
Memory into which the month is to be inserted. Give an empty int-type variable with &.
day 日の代入先。 宣言しただけのint型変数に&を付けて与える。
Memory into which the day is to be inserted. Give an empty int-type variable with &.


◆使用例(Example)

int month,day;
jday2monthday(2012,123,&month,&day);