我自己用c 語言編的電子日曆

2021-05-26 06:09:03 字數 490 閱讀 5908

#include

#include

int month[12]=;   

class calendar

void displaycalendar();   

int coutleapyear();      

private:

int yy;

int mm;

};void calendar::displaycalendar()

daymonth=month[mm-1];      

if ((yy%4==0&&yy%100!=0||yy%400==0)&&mm==2)

cout<<"        年"<>year>>month;

while((year<1900)&&(month<1||month>12))

calendar cal(year,month);

cal.displaycalendar();

cout<}

我用C 寫的日曆

只要呼叫構造方法就可以啦 using system using system.collections.generic using system.linq using system.text public class calendar 構造方法 年 public calendar int year e...

自己用的日曆控制項

var striframe with webcalendar.iframe function webcalendar 初始化日曆的設定 var webcalendar new webcalendar function calendar 主調函式 o.display webcalendar.ifram...

用crosstool ng構建自己的交叉編譯工具鏈

交叉編譯器是編譯器的一種,它執行在一種平台下卻生成另一種平台執行的二進位制檔案。當前構建交叉編譯器的方法有很多,這裡介紹一種方便快捷的方式 使用crosstool ng 1.從crosstool ng cd crosstool ng 1.21.0 3.執行編譯三步曲 configure prefix...