版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
-.z.-----總結(jié)資料C++程序設(shè)計(jì)報(bào)告C++程序設(shè)計(jì)報(bào)告——基于命令Win32命令行應(yīng)用程序的簡(jiǎn)易日程管理系統(tǒng)*益
C++語(yǔ)言程序設(shè)計(jì)
教師:黃鵬宇作者日程管理就是將每天的工作和事務(wù)安排在日期中,并做一個(gè)有效的記錄,方便管理日常的工作和事務(wù),到達(dá)工作備忘的目的。同時(shí)也具有對(duì)員工日常工作進(jìn)展指導(dǎo)、監(jiān)視的作用。電子版的日程管理通常具有定時(shí)提醒和共享等功能。通過(guò)學(xué)習(xí)C++課程以及面向?qū)ο蟮某绦蛟O(shè)計(jì),我發(fā)現(xiàn)日程管理中所需的日期、時(shí)間、記錄等都可以抽象成類,并可以利用函數(shù)實(shí)現(xiàn)簡(jiǎn)單的添加、查詢功能。由于能力的限制,本次"簡(jiǎn)易日程管理系統(tǒng)〞的設(shè)計(jì)依舊基于Win32命令行應(yīng)用程序〔MFC好難啃……〕,主要實(shí)現(xiàn)的功能有:輸入日程;查詢?nèi)咳粘?;查詢單條日程;修改時(shí)間。包括流程圖、類關(guān)系圖、文件關(guān)系圖。1、流程圖2、類關(guān)系圖包含于包含于包含于包含于3、文件關(guān)系圖SimpleScheduleSystem.cpp#include"stdaf*.h"#include<iostream>#include<fstream>#include"record.h"usingnamespacestd;voidmenue();voidaddRecord();voidgetRecord();voidchangeToday();voidgetRecordAll();ofstreamfout(RECORDPATH);Datetoday(2014,12,25);intmain(){while(true){menue();intn;cin>>n;switch(n){case1:{cout<<"\n"<<endl;addRecord();cout<<"\n"<<endl;break;}case2:{cout<<"\n"<<endl;getRecordAll();cout<<"\n"<<endl;break;}case3:{cout<<"\n"<<endl;changeToday();cout<<"\n"<<endl;break;}case4:{cout<<"\n"<<endl;getRecord();cout<<"\n"<<endl;break;}case0:{return0;}default:{cout<<"\n"<<endl;cout<<"輸入錯(cuò)誤"<<endl;cout<<"\n"<<endl;break;}}cout<<"按任意鍵繼續(xù)";getchar();getchar();fout.close();}return0;}voidmenue(){cout<<"**************************************************************"<<endl;cout<<"|************************************************************|"<<endl;cout<<"||"<<endl;cout<<"|簡(jiǎn)易日程管理系統(tǒng)|"<<endl;cout<<"||"<<endl;cout<<"|1:輸入日程|"<<endl;cout<<"||"<<endl;cout<<"|2:全部日程|"<<endl;cout<<"||"<<endl;cout<<"|3:修改當(dāng)前日期|"<<endl;cout<<"||"<<endl;cout<<"|4:查詢?nèi)粘蘾"<<endl;cout<<"||"<<endl;cout<<"|0:退出|"<<endl;cout<<"||"<<endl;cout<<"||"<<endl;cout<<"|************************************************************|"<<endl;cout<<"**************************************************************"<<endl;cout<<""<<endl;cout<<"今天是"<<today.getDate()<<endl;cout<<""<<endl;cout<<""<<endl;cout<<"請(qǐng)選擇:"<<endl;cout<<""<<endl;}voidaddRecord(){stringdate,s_time,e_time,content;charch;intn;cout<<"****************************************************************"<<endl;cout<<"*************************輸入日程*******************************"<<endl;cout<<"****************************************************************"<<endl;cout<<"需輸入的記錄數(shù):"<<endl;cin>>n;for(inti=n;i>0;i--){cout<<"請(qǐng)輸入日期〔格式為****/**/**〕:"<<endl;cin>>date;cout<<"請(qǐng)輸入開(kāi)場(chǎng)時(shí)間〔格式為**:**〕:"<<endl;cin>>s_time;cout<<"請(qǐng)輸入完畢時(shí)間〔格式為**:**〕:"<<endl;cin>>e_time;cout<<"請(qǐng)輸入事件內(nèi)容:"<<endl;cin>>content;Recordrec(date,s_time,e_time,content);cout<<"****************************************************************"<<endl;cout<<rec.getRecord()<<endl;today.earlyDate(rec.getDate());cout<<"****************************************************************"<<endl;cout<<"是否確認(rèn)?〔y/n):"<<endl;cin>>ch;if(ch=='y'){fout<<rec.getRecord()<<endl;cout<<"*************************輸入成功*******************************"<<'\n'<<endl;}elsei++;// rec.~Record();}}voidgetRecord(){stringdate_s;boolisFind=false;cout<<"****************************************************************"<<endl;cout<<"*************************查詢?nèi)粘?******************************"<<endl;cout<<"****************************************************************"<<endl;cout<<"請(qǐng)輸入日期〔格式為****/**/**〕:"<<endl;cin>>date_s;cout<<"**************************************************************"<<endl;Datedate(date_s);ifstreamfin(RECORDPATH);for(stringstr;getline(fin,str);){inty,m,d;charch;istringstreamsin(str);sin>>y;sin>>ch;sin>>m;sin>>ch;sin>>d;if(date.getYear()==y&&date.getMonth()==m&&date.getDay()==d){cout<<str<<endl;today.earlyDate(date);isFind=true;}}if(!isFind)cout<<"沒(méi)有記錄"<<endl;cout<<"**************************************************************"<<endl;}voidgetRecordAll(){cout<<"****************************************************************"<<endl;cout<<"*************************全部日程*******************************"<<endl;cout<<"****************************************************************"<<endl;ifstreamfin(RECORDPATH);for(stringstr;getline(fin,str);){cout<<str<<endl;cout<<"**************************************************************"<<endl;}}voidchangeToday(){stringdate;cout<<"請(qǐng)輸入日期〔格式為****/**/**〕:"<<endl;cin>>date;today.set(date);cout<<"*************************設(shè)置成功*******************************"<<endl;}myDate.h#ifndefMYDATE_H#defineMYDATE_H#include<iostream>#include<iomanip>#include<stdlib.h>usingnamespacestd;classDate{intyear,month,day;public:voidset(inty,intm,intd);voidset(strings);Date(){}Date(inty,intm,intd);Date(strings);intgetYear(){returnyear;}intgetMonth(){returnmonth;}intgetDay(){returnday;}stringgetDate();boolisLeapYear()const;boolisLate(Datedate);voidprint()const;voidaddDay(intn);intearlyDate(Datedate);};Date::Date(inty,intm,intd){year=y;month=m;day=d;}//------------------------------------------------Date::Date(strings){year=atoi(s.substr(0,4).c_str());month=atoi(s.substr(5,2).c_str());day=atoi(s.substr(8,2).c_str());}//------------------------------------------------voidDate::set(inty,intm,intd){year=y;month=m;day=d;}//------------------------------------------------voidDate::set(strings){year=atoi(s.substr(0,4).c_str());month=atoi(s.substr(5,2).c_str());day=atoi(s.substr(8,2).c_str());}//------------------------------------------------inlineboolDate::isLeapYear()const{return(year%4==0&&year%100!=0)||(year%400==0);}//------------------------------------------------inlinevoidDate::print()const{cout<<setfill('0');cout<<setw(4)<<year<<'/'<<setw(2)<<month<<'/'<<setw(2)<<day<<endl;cout<<setfill('');}//------------------------------------------------voidDate::addDay(intn){for(inti=n;i>0;i--){day++;switch(month){case4:;case6:;case9:;case11:if(day>30){day=1;month++;}break;case12:if(day>31){day=1;month=1;year++;}break;case2:if((isLeapYear()&&day>29)||day>28){day=1;month++;}break;default:if(day>31){day=1;month++;}break;}}}//------------------------------------------------stringDate::getDate(){stringstreamss;ss<<setw(4)<<setfill('0')<<year<<"/"<<setw(2)<<setfill('0')<<month<<"/"<<setw(2)<<setfill('0')<<day;stringstr=ss.str();// ss.~stringstream();returnstr;}boolDate::isLate(Datedate){if(year>date.year)returntrue;elseif(year==date.year){if(month>date.month)returntrue;elseif(month=date.month){if(day>date.day)returntrue;}}returnfalse;}intDate::earlyDate(Datedate){if(isLate(date)){cout<<"已過(guò)期"<<endl;return-1;}else{inti=0;Dateda(year,month,day);for(;date.isLate(da);i++)da.addDay(1);cout<<"距今還有"<<i<<"天"<<endl;}}#endifmyTIME.h#ifndefMYTIME_H#defineMYTIME_H#include<iostream>#include<iomanip>#include<stdlib.h>usingnamespacestd;classTime{inthour,minute;public:Time(){}Time(inth,intm);Time(strings);voidset(inth,intm);voidset(strings);voidprint()const;stringgetTime();};Time::Time(inth,intm){hour=h;minute=m;}//------------------------------------------------Time::Time(strings){hour=atoi(s.substr(0,2).c_str());minute=atoi(s.substr(3,2).c_str());}//------------------------------------------------voidTime::set(inth,intm){hour=h;minute=m;}//------------------------------------------------voidTime::set(strings){hour=atoi(s.substr(0,2).c_str());minute=atoi(s.substr(3,2).c_str());}//------------------------------------------------inlinevoidTime::print()const{cout<<setfill('0');cout<<setw(2)<<hour<<':'<<setw(2)<<minute;cout<<setfill('');}//------------------------------------------------stringTime::getTime(){stringstreamss;ss<<setw(2)<<setfill('0')<<hour<<":"<<setw(2)<<setfill('0')<<minute;stringstr=ss.str();// ss.~stringstream();returnstr;}//------------------------------------------------#endifReCord.h#ifndefRECORD_H#defineRECORD_H#include<iostream>#include<iomanip>#include<stdlib.h>#include<string>#include<sstream>#include"myDate.h"#include"myTime.h"#defineRECORDPATH"record.t*t"usi
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- xxxxxxx小學(xué)疫情防控應(yīng)急預(yù)案
- 體育用品按揭協(xié)議模板
- 幼兒園疫情期間安全衛(wèi)生工作總結(jié)
- 2024年中國(guó)鋼管加熱爐市場(chǎng)調(diào)查研究報(bào)告
- 2024年中國(guó)燃油蒸汽發(fā)生器市場(chǎng)調(diào)查研究報(bào)告
- IPV6及安全解決方案
- 醫(yī)院各科室績(jī)效方案
- 2024年中國(guó)兒童中褲市場(chǎng)調(diào)查研究報(bào)告
- 2024-2025學(xué)年人教高中物理同步講義練習(xí)選擇性必修三3.2 熱力學(xué)第一定律(含答案) (人教2019選擇性必修三)
- 旅游管理系統(tǒng)課程設(shè)計(jì)
- 小學(xué)英語(yǔ)課堂教學(xué)策略與方法探討
- 5科學(xué)大玉米真好吃課件
- 新蘇教版2021-2022四年級(jí)科學(xué)上冊(cè)《8力與運(yùn)動(dòng)》教案
- DB44 T 552-2008 林業(yè)生態(tài) 術(shù)語(yǔ)
- 套裝門(mén)安裝工程施工方案(完整版)
- IBHRE國(guó)際心律失常考官委員會(huì)資料: ibhre 復(fù)習(xí)資料
- 洋蔥雜交制種高產(chǎn)栽培技術(shù)
- 堅(jiān)定信心 努力拼搏——在公司大檢修動(dòng)員會(huì)上的講話
- 油墨噴碼機(jī)購(gòu)銷合同
- 水泵生產(chǎn)作業(yè)指導(dǎo)書(shū)
- 《高血壓的防治》PPT課件.ppt
評(píng)論
0/150
提交評(píng)論