C++實現簡易萬年曆
阿新 • • 發佈:2020-01-07
本文例項為大家分享了C++實現簡易的萬年曆,供大家參考,具體內容如下
程式碼如下:
/* *檔名稱:萬年曆.cpp *作 者:chenghan *完成日期:2019/1/10 *版 本 號:1.0 *問題描述:製作一個簡單的萬年曆 */ #include<iostream> #include <string> using namespace std; //判斷一年是否為閏年,是返回true 否返回false bool isleapyear(int year); //兔子圖案 void Rabbit(); //封裝時間類 私有資料成員包括年月日 class Date { private: int year,month,day; //私有資料成員 public: Date(){} //無參的建構函式 Date(int year,int month,int day); //有參的建構函式 void Disp_Date(); //顯示星期數 void set(); //使用者輸入時間 int week(); //判斷星期的函式 void show(); //顯示日曆的函式 }; //主函式 int main() { Date t; //建立一個Date類物件 string N="yes"; Rabbit(); while(N=="yes"){ t.set(); //呼叫設定時間函式 t.Disp_Date(); //顯示星期 t.show(); //展示日曆畫面 cout<<"\n是否繼續查詢,是(yes)否(no)\n"; cin>>N; } return 0; } //判斷一年是否為閏年,是返回true 否返回false bool isleapyear(int year) { if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) return true; else return false; } //兔子圖案 void Rabbit() { cout<<endl; cout<<" ┏━┓ ┏━┓"<<endl; cout<<"作者:chenghan ★│┃ ┃│┃"<<endl; cout<<" ┃│┗灬┛│┃"<<endl; cout<<"版本:1.0 ┃ ┃"<<endl; cout<<" ┃ ^ ^ ┃"<<endl; cout<<"時間:2019/1/10 ﹌ ˇ ﹌ "<<endl; cout<<" ┗○━━━○┛"<<endl; cout<<"---------------------------------\n"; cout<<"歡 來 萬 歷"<<endl; cout<<" 迎 到 年 !"<<endl; cout<<"---------------------------------------------------\n"; } //有參的建構函式 Date::Date(int year,int day) //有參的建構函式 { this->year = year; this->month = month; this->day = day; } //顯示星期數 void Date::Disp_Date(){ cout << year << "年" << month << "月" << day << "日 星期" ; switch(this->week()){ case 0: cout<<"日\n"; break; case 1: cout<<"一\n"; break; case 2: cout<<"二\n"; break; case 3: cout<<"三\n"; break; case 4: cout<<"四\n"; break; case 5: cout<<"五\n"; break; case 6: cout<<"六\n"; break; } } //使用者設定時間 void Date::set() { cout<<"請輸入您所想要查詢的年、月、日:"; cin>>year>>month>>day; } //判斷星期的函式 int Date::week(){ int C,y,d,M; if(this->month==1||this->month==2){ C = (this->year-1)/100; y = (this->year-1)%100; M = this->month+12; d = this->day; } else{ C = this->year/100; //C世紀數減一 y = this->year%100; //y年份後兩位 d = this->day; //d是日 M = this->month; } int W = C/4 - 2*C + y + y/4 + 13 * (M+1) / 5 + d - 1; //判斷星期的蔡勒公式 if (W < 0) /* 如果w是負數,則計算餘數方式不同 */ { W = 7 - (-W) % 7; return W; //返回值1~6對應星期一到六 0對應七 } else return W%7; } //顯示日曆的函式 void Date::show(){ Date temp; temp.year = this->year; temp.month = this->month; temp.day = 1; int count = temp.week(); cout<<"---------------------------------------------------"<<endl; //粗製濫造的介面 cout<<"---------------------"<<this->year<<"年"<<this->month<<"月"<<"---------------------\n"; cout<<"日 一 二 三 四 五 六\n"; for(int i=0;i<count;i++){ cout<<" \t"; } if(temp.month == 1 ||temp.month == 3 ||temp.month == 5 || temp.month ==7 || temp.month ==8 || temp.month ==10 ||temp.month == 12){ for(int j=1;j<32;j++){ if(j<10)cout<<" "<<j<<"\t"; else cout<<j<<"\t"; if(count==6){ cout<<"\n"; count = 0; } else count++; } } else if(temp.month == 4 ||temp.month == 6 ||temp.month == 9 ||temp.month == 11){ for(int j=1;j<31;j++){ if(j<10)cout<<" "<<j<<"\t"; else cout<<j<<"\t"; if(count==6){ cout<<"\n"; count = 0; } else count++; } } else if(temp.month==2){ if(isleapyear(this->year)){ for(int j=1;j<30;j++){ if(j<10)cout<<" "<<j<<"\t"; else cout<<j<<"\t"; if(count==6){ cout<<"\n"; count = 0; } else count++; } } else{ for(int j=1;j<29;j++){ if(j<10)cout<<" "<<j<<"\t"; else cout<<j<<"\t"; if(count==6){ cout<<"\n"; count = 0; } else count++; } } } cout<<"\n---------------------------------------------------"; }
執行結果:
程式碼中沒有檢查輸入錯誤的機制,寫的比較粗糙,有許多錯誤之處望指正。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。