版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
通訊錄管理問題描述編寫一個(gè)簡(jiǎn)單的通訊錄管理程序。通訊錄記錄有姓名,地址(省、市(縣)、街道),電話號(hào)碼,郵政編碼等四項(xiàng)?;疽蟪绦驊?yīng)提供的基本管理功能有:添加:即增加一個(gè)人的記錄到通信錄中顯示:即在屏幕上顯示所有通信錄中的人員信息,應(yīng)能分屏顯示。存儲(chǔ):即將通訊錄信息保存在一個(gè)文件中。裝入:即將文件中的信息讀入程序。查詢:可根據(jù)姓名查找某人的相關(guān)信息,若找到顯示其姓名、地址、電話號(hào)碼和郵政編碼。修改:可修改一個(gè)人的除姓名外其它信息。測(cè)試數(shù)據(jù)程序應(yīng)輸入不少于10個(gè)人員的通訊錄信息,應(yīng)考慮到人員可以同名的情況。實(shí)現(xiàn)提示程序可用一個(gè)動(dòng)態(tài)數(shù)組來管理人員信息,每個(gè)人員的姓名,地址,電話號(hào)碼和郵政編碼用一個(gè)類Cperson來實(shí)現(xiàn),作為動(dòng)態(tài)數(shù)組的值指針指向這些Cperson類對(duì)象,通過動(dòng)態(tài)數(shù)組的遍歷可以操作這些數(shù)據(jù)。目錄【摘要】 第1章概述1.1系統(tǒng)實(shí)現(xiàn)的目標(biāo)1.2系統(tǒng)實(shí)現(xiàn)方案 1.3系統(tǒng)實(shí)現(xiàn)環(huán)境 1.4具體的開發(fā)方法第2章系統(tǒng)設(shè)計(jì) 2.1總體設(shè)計(jì) 2.2類設(shè)計(jì) 2.3數(shù)據(jù)結(jié)構(gòu) 2.4界面設(shè)計(jì) 第3章系統(tǒng)實(shí)現(xiàn) 【摘要】日益繁多的人際交往使得我們很難記住與每個(gè)人之間的聯(lián)系方式,通訊錄能夠便捷的給我們帶來所需要的相關(guān)信息。而隨著計(jì)算機(jī)的普及,人們的生活擺脫了傳統(tǒng)式的記事本、電話簿,越來越多的靠計(jì)算機(jī)或者手機(jī)中的電話簿程序來幫助人們記住這些事情,極其簡(jiǎn)便。這就需要有一個(gè)使用的通訊錄管理系統(tǒng),用戶可以方便的通過自己電腦的通訊錄管理系統(tǒng),來隨時(shí)查閱自己所需要的信息,而不必再大費(fèi)周折去翻開那繁瑣的記事本。通訊錄管理系統(tǒng)是一個(gè)專門針對(duì)儲(chǔ)存用戶聯(lián)系方式以及一些簡(jiǎn)單個(gè)人信息的實(shí)用管理系統(tǒng),它方便了用戶對(duì)眾多客戶、朋友、同事等個(gè)人信息的儲(chǔ)存和快速查閱的功能,大大減少了查找過程的時(shí)間。1.1系統(tǒng)實(shí)現(xiàn)的目標(biāo)(1)錄入:通訊錄信息包括:姓名,電話,地址,E-mail,郵編等信息。(2)更新:能插入、刪除通訊錄信息。.(3)瀏覽:能夠查看所有的通訊錄信息。(4)查詢:能實(shí)現(xiàn)指定姓名信息查詢或指定編號(hào)查詢功能。(5)系統(tǒng)以菜單方式工作,界面友好,易于操作。1.2系統(tǒng)實(shí)現(xiàn)方案為實(shí)現(xiàn)系統(tǒng)功能,本程序主要分為五個(gè)模塊。它們分別為:輸入一個(gè)信息、刪除一個(gè)信息、查詢一個(gè)信息、插入一個(gè)信息、列出所有的信息、退出該程序。這五個(gè)函數(shù)再通過主函數(shù)調(diào)用分別得以實(shí)現(xiàn)。主函數(shù),首先提供了程序運(yùn)行時(shí)的友好界面,列出了清單,提供用戶做出選擇,以便決定使用通訊錄的哪種功能。然后,通過執(zhí)行多分支選擇語(yǔ)句——switch語(yǔ)句,分別實(shí)現(xiàn)其它各個(gè)函數(shù)的調(diào)用功能。1.3系統(tǒng)實(shí)現(xiàn)環(huán)境通過VC++6.0用C++語(yǔ)言對(duì)程序進(jìn)行編寫設(shè)計(jì)在windows界面下用DOS訪問1.4具體的開發(fā)方法用面向?qū)ο蟮某绦蛟O(shè)計(jì)方法,運(yùn)用C++語(yǔ)言編寫程序進(jìn)行該學(xué)生考勤管理系統(tǒng)的詳細(xì)設(shè)計(jì),使之能提供錄入、顯示、查找、刪除、修改的功能。最后在VC++6.0環(huán)境下編寫和調(diào)試程序,進(jìn)而完成系統(tǒng)的實(shí)現(xiàn)。第2章系統(tǒng)設(shè)計(jì)2.1總體設(shè)計(jì)功能:1.輸入聯(lián)系人的信息2.顯示聯(lián)系人的信息3.查找聯(lián)系人的信息4.刪除聯(lián)系人的信息5.編輯人的信息一程序分析階段該程序有六項(xiàng)功能,即添加、顯示、存儲(chǔ)、裝入、查詢、修改,要完成此六項(xiàng)功能必須有六項(xiàng)實(shí)現(xiàn)該功能的函數(shù),和類的構(gòu)造相聯(lián)系知此六項(xiàng)功能即為類的行為,此為行為抽象。該程序又有四項(xiàng)屬性,即姓名、地址、電話號(hào)碼、郵政編碼,又因?yàn)榈刂酚腥?xiàng)成員,即省、市、街道,由此可知可將數(shù)據(jù)成員分為兩個(gè)類,即Cperson類和Address類,此為類的數(shù)據(jù)成員。此為數(shù)據(jù)抽象。至此類的數(shù)據(jù)成員和行為成員形成。二程序設(shè)計(jì)階段由于人員信息較多,可考慮使用對(duì)象數(shù)組來管理人員信息,作為動(dòng)態(tài)數(shù)組的值指針指向這些Cperson類對(duì)象,通過動(dòng)態(tài)數(shù)組的遍歷可以操作這些數(shù)據(jù)。程序應(yīng)輸入不少于10個(gè)人員的通訊錄信息,應(yīng)考慮到人員可以同名的情況。當(dāng)人員同名是應(yīng)該考慮其他的屬性。三程序編程階段1:編程之前應(yīng)該先畫出該類的UML圖。Cperson—phonenumber:int—Cperson—phonenumber:int—lastdate:int—name:string—address:Address—postnumber:string—balance:double—time:double—<<const>>price:double—<<static>>n:int+Cperson():void+getbalance():void+gettime():void+record(date:int,account:double):double+show():void+select(name:string):void+alter(phonenumber:int):void+insert(phonenumber:int):voidAddress—province:string—city:string—street:string+Address()+getAddress()+Address(Address&add)第三章系統(tǒng)實(shí)現(xiàn)//Address類的設(shè)計(jì)#ifndefAddress_h#defineAddress_h#include<string>classAddress{private: std::stringprovince; std::stringcity; std::stringstreet;public: Address(){} Address(std::stringprovince,std::stringcity,std::stringstreet); voidgetaddress(std::stringprovince,std::stringcity,std::stringstreet); Address(Address&address1); ~Address();};#endif//Cperson類的設(shè)計(jì)#ifndefCperson_h#defineCperson_h#include<string>classCperson//通信用戶類{public:Cperson(); Cperson(intphonenumber,intdate,char*name1,Address&address,std::stringpostnumber); doublegetbalance()const{returnbalance;} doublegettime()const{returntime;} voidinputmoney(intdate,doubleaccount); voidrecord(intdate,doubleaccount); voidsettle(intdate,doubletime); staticunsignedintgettotal(){returnn;} voidinput(intphonenumber,char*name1,Address&address,std::stringpostnumber,doublebalance,doubletime); voidshow()const;voidselect(char*name); voidalter(intphonenumber1,char*name1); voidinsert(intphonenumber); ~Cperson();private: intphonenumber;//電話號(hào)碼 intlastdate;//充值日期 char*name;//用戶姓名 Addressaddress;//用戶地址 std::stringpostnumber;//用戶所在地的郵政編碼 doublebalance;//余額 doubletime;//通話時(shí)間 staticdoubleprice;//話費(fèi)單價(jià) staticunsignedintn;//用戶總?cè)藬?shù)};#endif//Address類的實(shí)現(xiàn)#include"Address.h"#include<string>usingnamespacestd;Address::Address(stringprovince,stringcity,stringstreet){province=province; city=city; street=street;}Address::getaddress(stringprovince,stringcity,stringstreet){address=province+city+street;}Address::~Address(){}Address::Address(Address&address1){province=vince; city=address1.city; street=address1.street;}//Cperson類的實(shí)現(xiàn)#include"Address.h"#include"Cperson.h"#include<iostream>#include<string>#include<cmath>usingnamespacestd;Cperson::Cperson(){}Cperson::Cperson(intdate,intphonenumber,char*name1,Address&address1,stringpostnumber){ lastdate=date; phonenumber=phonenumber;name=newchar[strlen(name1)+1]; //申請(qǐng)動(dòng)態(tài)內(nèi)存空間 strcpy(name,name1); //字符串的賦值 Address=address1; postnumber=postnumber; balance=0; time=0; price=price;cout<<"\t#"<<name<<"iscreated"<<endl; n++;}voidCperson::record(intdate,doubleaccount){ lastdate=date;balance=balance+account; cout<<date<<"\t#"<<name<<"\t"<<account<<"\t"<<balance<<endl;}voidCperson::inputmoney(intdate,doubleaccount){ cout<<"你已經(jīng)成功充值"<<account<<endl; record(date,account);}voidCperson::settle(intdate,doubletime){doubleaccount; account=floor(time*price+0.5); if(account>getbalance()) cout<<"你的話費(fèi)不足,請(qǐng)及時(shí)繳費(fèi)!"<<endl; else record(date,-account);}voidCperson::select(char*name1){for(inti=0;i<n;i++)if(strcmp(name,name1)==0) cout<<"你查找的用戶為"<<name<<endl; else cout<<"你查找的用戶不存在"<<endl;}voidCperson::input(intphonenumber,char*name1,Address&address1,stringpostnumber,doublebalance,doubletime){phonenumber=phonenumber; name=newchar[strlen(name1)+1];//為name申請(qǐng)動(dòng)態(tài)的內(nèi)存空間strlen()是查出字符串長(zhǎng)度的函數(shù) strcpy(name,name1);//字符串的賦值 address=address1;postnumber=postnumber; balance=balance; time=time;}voidCperson::show()const{cout<<"phonenumber="<<phonenumber<<endl; cout<<"name="<<name<<endl; cout<<"address="<<Address(province,city,street)<<endl; cout<<"postnumber="<<postnumber<<endl; cout<<"balance="<<balance<<endl; cout<<"time="<<time<<endl;}voidCperson::alter(intphonenumber1,char*name1){ Cperson*person;person=newCperson[n]; for(inti=0;i<n;i++) if(person->phonenumber==phonenumber1) cout<<"chae";// name=(*name1); else cout<<"你要修改的用戶不存在!"<<endl;//person=newCperson[n];}voidCperson::insert(intphonenumber){}Cperson::~Cperson(){delete[]name;//釋放動(dòng)態(tài)內(nèi)存空間}//Cperson類的測(cè)試#include"Address.h"#include"Cperson.h"#include<iostream>#include<fstream>#include<iomanip>#include<string>usingnamespacestd;doubleCperson::price=0.8;unsignedintCperson::n=1;intmain(){ intdate; doubleaccount;intlastdate; intm; intn=1; intphonenumber; charname[20];stringprovince,city,street; stringpostnumber; doublebalance; doubletime; AddressAdd;Cperson*person=newCperson[n];/*Cpersonp(12,23,"韓波","息縣","123"); cout<<"date="<<lastdate<<endl; cout<<"address="<<address<<endl;*/ for(inti=0;i<n;i++) { cout<<"請(qǐng)輸入第"<<i+1<<"個(gè)人的信息"<<endl; cout<<"date="; cin>>lastdate; cout<<"phonenumber="; cin>>phonenumber; cout<<"name="; cin>>name;cout<<"province="; cin>>province; cout<<"city="; cin>>city; cout<<"street="; cin>>street; Address.getaddress(province,city,street);cout<<"postnumber="; cin>>postnumber;cout<<"balance="; cin>>balance; cout<<"time="; cin>>time; person[i].input(phonenumber,name,(province,city,street),postnumber,balance,time); for(inti=0;i<n;i++) { cout<<"請(qǐng)輸入第"<<i+1<<"個(gè)用戶的姓名,電話號(hào)碼,地址,郵政編號(hào)"; cin>>person[i].name>>person[i].phonenumber>>person[i].address>>person[i].postnumber; } fstreamMyfile1,Myfile2;Myfile1.open("D:\\用戶信息.txt",ios::out);Myfile1<<"***********用戶信息***********"<<endl<<endl; Myfile1<<"姓名"<<"電話號(hào)碼"<<"地址"<<"郵政編碼" <<endl<<"***************************************************************"<<endl;for(i=0;i<n;i++) Myfile1<<"NO."<<setw(2)<<n+1<<""<<setw(6)<<person[i].name<<""<<person[i].phonenumber<<""<<setw(8)<<person[i].address<<""<<person[i].postnumber<<endl;Myfile1.close();cout<<"你輸入的數(shù)據(jù)為:"<<endl; cout<<"date="<<lastdate<<endl; cout<<"phonenumber="<<phonenumber<<endl;cout<<"name="<<name<<endl;cout<<"address="<<Add.getaddress(province,city,street)<<endl;cout<<"postnumber="<<postnumber<<endl;cout<<"balance="<<balance<<endl;cout<<"time="<<time<<endl;} Cpersonperson1; cout<<"********************************************"<<endl; cout<<"你要進(jìn)行的操作是:"<<endl; cout<<"1:顯示"<<"\t"<<"2:查詢"
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝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ù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024-2030年中國(guó)團(tuán)購(gòu)行業(yè)當(dāng)前經(jīng)濟(jì)形勢(shì)及投資建議研究報(bào)告
- 2024-2030年中國(guó)噴水織機(jī)行業(yè)供需趨勢(shì)及投資策略分析報(bào)告
- 2024年物流外包合作協(xié)議增補(bǔ)3篇
- 2024年煤炭交易市場(chǎng)誠(chéng)信體系建設(shè)購(gòu)銷運(yùn)輸合同范本3篇
- 2024年版針對(duì)配偶出軌的婚姻解除合同版B版
- 微專題蓋斯定律的高階應(yīng)用-2024高考化學(xué)一輪考點(diǎn)擊破
- 呂梁職業(yè)技術(shù)學(xué)院《數(shù)字營(yíng)銷》2023-2024學(xué)年第一學(xué)期期末試卷
- 2024年某城市關(guān)于垃圾分類處理服務(wù)合同
- 2024年物業(yè)項(xiàng)目托管合同
- 漯河食品職業(yè)學(xué)院《移動(dòng)營(yíng)銷設(shè)計(jì)》2023-2024學(xué)年第一學(xué)期期末試卷
- 2025年計(jì)算機(jī)等級(jí)考試一級(jí)計(jì)算機(jī)基礎(chǔ)及MS Office應(yīng)用試卷及解答參考
- 小學(xué)五年級(jí)上冊(cè)語(yǔ)文 第一單元 語(yǔ)文要素閱讀(含解析)
- 2024年廣東公需科目答案
- ABB工業(yè)機(jī)器人基礎(chǔ)知識(shí)
- 中國(guó)校服產(chǎn)業(yè)挑戰(zhàn)與機(jī)遇分析報(bào)告 2024
- 2022版義務(wù)教育物理課程標(biāo)準(zhǔn)
- 山東省日照市2023-2024學(xué)年七年級(jí)上學(xué)期期末數(shù)學(xué)試題(含答案)
- 上海華東師大二附中2025屆高一數(shù)學(xué)第一學(xué)期期末檢測(cè)試題含解析
- 新教科版六年級(jí)上冊(cè)科學(xué)全冊(cè)知識(shí)點(diǎn)(期末總復(fù)習(xí)資料)
- 《靜女》《涉江采芙蓉》對(duì)比閱讀教學(xué)設(shè)計(jì) 2023-2024學(xué)年統(tǒng)編版高中語(yǔ)文必修上冊(cè)
- 2024-2030年水培蔬菜行業(yè)市場(chǎng)發(fā)展分析及發(fā)展趨勢(shì)與投資戰(zhàn)略研究報(bào)告
評(píng)論
0/150
提交評(píng)論