這篇文章將為大家詳細(xì)講解有關(guān)C++如何實(shí)現(xiàn)萬(wàn)年歷功能,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
東豐網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),東豐網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為東豐成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的東豐做網(wǎng)站的公司定做!
具體內(nèi)容如下
1.此萬(wàn)年歷功能
1>日期加減天數(shù)
2>日期與日期之間的差值
3>輸入年月顯示當(dāng)月日歷
2.代碼實(shí)現(xiàn)
#include<iostream> #include<iomanip> using namespace std; class Date { public: Date(int year = 1990, int month = 1, int day = 1) //構(gòu)造函數(shù) :_year(year), _month(month), _day(day) { if (JudgeRightDate()) //判斷傳入的值是否是合法的,不合法則置成1990年1月1日 { _year = 1990; _month = 1; _day = 1; } } bool JudgeRightDate() //判斷值是否合法函數(shù) { if (_year < 1 || ((_month< 1)||_month>12) || (_day<1)||_day>GetMonthDay(_year,_month)) { return true; } else { return false; } } int JudgeYear(int year) //判斷是否是閏年的函數(shù) { if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) { return 1; } else return 0; } int GetMonthDay(int year, int month) //通過(guò)年和月得到對(duì)應(yīng)的天數(shù) { int arr[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int days = arr[month]; if (month == 2) { days += JudgeYear(year); //如果是閏年的二月則天數(shù)加1 } return days; } Date operator +(int days) //日期加天數(shù)函數(shù),重載“+”實(shí)現(xiàn) { _day += days; //先將天數(shù)全部加到所給日期的“天”上 GetRightDate(_year, _month, _day); //再通過(guò)計(jì)算得到正確的日期。 return *this; } void GetRightDate(int &year, int &month, int &day) //計(jì)算出正確的日期 { if (day <= 0) { while (day <= 0) { month--; day += GetMonthDay(year, month); if (month < 1) { year--; month = 13; } } } else { while (day>GetMonthDay(year, month)) { day -= GetMonthDay(year, month); month++; if (month > 12) { year++; month = 1; } } } } Date operator -(int days) //重載“-”實(shí)現(xiàn)日期減天數(shù) { _day -= days; GetRightDate(_year, _month, _day); return *this; } bool operator >(const Date &d) //判斷兩個(gè)日期的大小 { if (_year > d._year) { return true; } else if (_year == d._year) { if (_month > d._month) { return true; } else if (_month==d._month) { if (_day > d._day) { return true; } } } return false; } bool operator ==(const Date &d) //判斷兩個(gè)日期是否相等 { if (_year == d._year && _month == d._month && _day == d._day) { return true; } else return false; } int operator -( Date &d) //計(jì)算日期差函數(shù),重載“-”實(shí)現(xiàn) { int count = 0; Date tmp(*this); if (*this > d) { tmp = d; d = *this; *this = tmp; } while (!(*this==d)) { count++; *this =*this+1; } return count; } void print() //打印函數(shù) { cout << _year << "-" << _month << "-" << _day; } int week() //求出日期對(duì)應(yīng)的星期函數(shù) { int w = 0; int y = _year; int m = _month; if (m == 1 || m == 2) { m = _month + 12; y = _year - 1; } w = _day + 2 * m + 3 * (m + 1) / 5 + y + y / 4 - y / 100 + y / 400; w = w % 7 + 1; return w; } void print_week() { cout << "星期日 星期一 星期二 星期三 星期四 星期五 星期六" << endl; } void print_day() //根據(jù)日期和星期,正確的輸出日歷 { int line = 1; int days = GetMonthDay(_year,_day); int w = week(); if (w != 7) { for (int blank = w - 1; blank; --blank, ++line) { cout << setw(7) << ""; } } for (int d = 1; d <= days; ++d, ++line) { cout << setw(7) << d; if (line % 7 == 0) { cout << endl; } } cout << endl; } private: int _year; int _month; int _day; }; void menu() { cout << setw(40) <<"萬(wàn)年歷"<< endl; cout << "1.日期加減天數(shù)" << endl; cout << "2.日期減日期" << endl; cout << "3.輸入年月顯示當(dāng)月日歷" << endl; } void choice() { int num = 0; int year, month, day, days; char ch = '+'; cin >> num; if (num == 1) { cout << "請(qǐng)輸入日期:" << endl; cin >> year >> month >> day; cout << "請(qǐng)輸入天數(shù):" << endl; cin >> days; cout << "請(qǐng)輸入'+'或者'-':" << endl; cin >> ch; Date d1(year, month, day); Date d2; if (ch == '+') { d2 = d1 + days; } else if (ch == '-') { d2 = d1 - days; } else { cout << "無(wú)效的輸入!" << endl; } cout << "計(jì)算后的日期為:"; d2.print(); cout << endl; } else if (num==2) { cout << "請(qǐng)輸入日期:" << endl; cin >> year >> month >> day; Date d3(year, month, day); cout << "請(qǐng)輸入日期:" << endl; cin >> year >> month >> day; Date d4(year, month, day); int ret = d3 - d4; cout << "期間相差:" << ret << endl; } else if (num == 3) { cout << "請(qǐng)輸入年月:" << endl; cin >> year >> month; Date d5(year, month); d5.print_week(); d5.print_day(); } } int main() { menu(); choice(); system("pause"); return 0; }
關(guān)于“C++如何實(shí)現(xiàn)萬(wàn)年歷功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
新聞標(biāo)題:C++如何實(shí)現(xiàn)萬(wàn)年歷功能
地址分享:http://www.rwnh.cn/article14/jdgjge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、營(yíng)銷型網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、電子商務(wù)、網(wǎng)站維護(hù)、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)