C語言實現簡單日曆

2021-09-25 15:37:59 字數 680 閱讀 8948

其實時間採用的是計算機起始時間2023年1月1日(紀元時間)。

#define _crt_secure_no_warnings 1

#include int months[2][13] = ,

};void input(int *year,int *month) //輸入年和月

int isleapyear(int year) //判斷是不是閏年

int firstdayofyear(int year,int month) //返回當前年的第一天是週幾

int firstdayofmonth(int firstday_y,int year,int month) //返回當前年當前月是週幾

return (firstday_y + total)%7;

}void display(int firstday_m,int year,int month) //顯示當前年當前月的日曆

for(i = 1;i <= months[isleapyear(year)][month];i++) }

printf("\n");

}int main()

執行結果如圖所示。

實現簡單日曆

當前年 asp label id lbyear runat server text asp label 當前月 asp label id lbmonth runat server text asp label asp button id premonth runat server text 上一月 ...

PHP 簡單日曆功能的實現

1 這是乙個簡單的 php 例子 2 這個例子的功能是,實現乙個簡單的日曆顯示功能。3 該函式的作用是 輸入指定的 年 月 日時,輸出當前月的日曆,並在輸入的指定 日期 中,突出顯示。具體的 實現如下 1 2header content type text html charset utf 8 34...

PHP實現簡單日曆類編寫

用php實現日曆類的編寫,供大家參考,具體內容如下 calendar.class.php 建立乙個日曆類 修改預設時區 date default timezone set prc class calendar function showcalendar 1 顯示星期 private function...