




版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、 姓名:肖 虎 (DAVID X.H.) 專業:巖土工程(工程學院) 學號:20051002595 日期: 2007.09.05 我的班號是20,題目是22題,另外還選做了第18題。報告分四部分,第一部分為實習概述,第二部分為第22題的設計與分析,第三部分為第18題的設計與分析,第四部分兩個系統的原代碼。 第一部分 計算機語言只有通過不斷的實踐才能掌握和熟練運用,所以學校的C語言實習非常有必要,不足之處是太遲了。通過這次實習,我鞏固了C語言的語法和一些函數,特別是對文本文件操作的函數,領悟了模塊設計的基本思想。 我的一點建議。將IDE換成VC6.0,VC6.0編輯比較方便,支持剪貼,復制,粘貼
2、,有縮進功能,寫代碼方便、美觀。 第二部分 Part : 題目大意:做一系統,要求用文件保留用戶的信息(包括姓名,性別,地址,電話號碼,雜志單價,訂閱數,訂閱期限(以“YYYY.MM.DD”表示),提供以下的功能: 1,增加新訂戶,將用戶的信息寫入文件。 2,根據當天的日期對文件查詢,刪除已到期的訂戶的文件信息。 3,統計本雜志的本月或任意時候的訂戶數,并輸出訂戶的信息。Part : 需求分析:根據題目要求,由于訂戶信息放在文件中,所以應提供文件的輸入,輸出,刪除等操作;在程序中需要瀏覽訂戶的信息,應提供顯示、查找等操作;另外還應提供用戶每步的輸入提示、輸入的日期的格式判斷及重輸功能、鍵盤式選
3、擇菜單實現功能等。Part : Part :注:原代碼在第四部分。2,增加訂戶模塊 注:原代碼在第四部分。3,刪除過期訂戶 注:原代碼在第四部分。在上圖中我假設當前時間為20080808對文件中訂戶信息進行更新。下面來看看保存有訂戶信息的文本文件中的數據情況。在上圖中我們可以看出所有的到期時間在20080808之前的訂戶的信息都被一段特殊的信息所代替。4,輸出所有信息注:原代碼在第四部分。在上圖中我輸出了在MSG.txt中的所有訂戶的信息。5,統計本月訂戶注:原代碼在第四部分。上圖中假設這個月是20080808。注意這個功能與刪除過期訂戶的差異,統計功能只是輸出文件中沒有過期的訂戶,而沒有在文
4、件中將過期的訂戶刪除,而刪除過期訂戶在文件中將過期的訂戶刪除。6,查詢用戶 注:原代碼在第四部分。以上是查詢姓名是"xiao"的訂戶的信息。 第三部分Part : 第十八題程序設計。 題目大意:有n個正整數,將他們組成一排,組成一個最大的位數。程序輸入:N個整數,程序輸出:N個數連接成的多位數。Part : 設計思路: 將所有的正整數用字符串的格式存儲,用strcmp()函數將他們比較大小。將比較后大的先輸出,小的后輸出。這樣一來貌似已經得到了想要得到的結果,但是這是不對的。舉個很簡單的例子: 比如:有如下正整數散列,121 2 33 1006 12那么按照這個算法大小順序
5、應該是:33 2 121 12 1006,輸出的數就是332121121006。其實它不是最大的,最大的數應該是:332121211006。 這就是說,要對算法進行修正,注意到在上面的散列中121與12 的順序對結果影響很大,因為12 是121的子串,才會出現這種情況,那么可以這樣修正將strcmp()后的結果的順序,將序列中的第i個與第i+1個交換,比較交換后的序列組成的數與交換前的序列組成的數的strcmp()大小,如果大就將序列中的i與i+1個數真的交換,否則保持原順序。Part : 流程圖按照提示在屏幕上分別輸入5個正整數,可以得到最大的組合。以下是輸入的121 2 33 1006 1
6、2。其中第一個數5表示有五個正整數。注:原代碼在第四部分。 第四部分第22題的原代碼:#include "stdio.h"#include "string.h"#include "stdlib.h"typedef struct msgchar name20;char sex10;char dialnumber11; int count; float price; float money; char date20;char readeraddr50;msgnode;void Start()printf("*n");p
7、rintf("* WRITEN BY DAVID X.H. OF CUG *n");printf("* *n");printf("* *n");printf("* DAVID X.H. ALL RIGHTS RESERVED *n");printf("*n");void TextOut()printf("ttwanna check message,press-0.nn"); printf("ttwanna ADD a new reader,press-1.nn&qu
8、ot;);printf("ttwanna update the message table,press-2.nn");printf("ttwanna output all the message ,press-3.nn");printf("ttwanna display readers this month. ,press-4.nn");printf("ttwanna exit,press-5.nn");int CheckDateMon(char * date) char chdate3; chdate0=date
9、5; chdate1=date6; chdate2='0' return atoi(chdate);int CheckDateDay(char * date)char chdate3;chdate0=date8;chdate1=date9; chdate2='0' return atoi(chdate);int AddReader()FILE *fp; msgnode ad; if(fp=fopen("MSG.txt","at")=NULL)printf("Cannot open the file or Cann
10、ot find the file.please check out .n"); getch(); return 0;printf("input start. _ n"); printf("please input the name: _ n"); scanf("%s",);printf("please input the sexmale/female: _ n"); scanf("%s",ad.sex);printf("please input the dial
11、number: _ n"); scanf("%s",ad.dialnumber); printf("please input the count: _ n"); scanf("%d",&ad.count); printf("please input the price: _ n"); scanf("%f",&ad.price); printf("please input the date: _ n"); scanf("%s",ad
12、.date); while(ad.date4!='.'| ad.date7!='.'| strlen(ad.date)!=10 |CheckDateMon(ad.date)>=13|CheckDateDay(ad.date)>=32)printf("the format is not right or the date is not existed.n "); printf("You should input the date like this 'YYYY.MM.DD'n");printf(&
13、quot;please input the date again: _ n"); scanf("%s",ad.date);printf("please input the address of reader: _ n"); scanf("%s",ad.readeraddr); fprintf(fp,"%15s %8s %13s %7d %7.2f %10.2f %13s %-50sn",,ad.sex,ad.dialnumber,ad.count,ad.price,ad.count*ad.p
14、rice,ad.date,ad.readeraddr); fclose(fp); return 1;int UpdateMsg(char *currdate)msgnode currnode,movenode ; int i=0,j=0; FILE *fp; if(fp=fopen("MSG.txt","rt+")=NULL)printf("%s n","Cannot open the file or Cannot find the file.please check out ."); return 0;i=fte
15、ll(fp); fscanf(fp,"%s%s%s%d%f%f%s%s" ,,currnode.sex,currnode.dialnumber,&currnode.count,&currnode.price,&currnode.money,currnode.date,currnode.readeraddr); j=ftell(fp);j=j-i;rewind(fp);while(!feof(fp)fscanf(fp,"%s%s%s%d%f%f%s%s" ,,currnode.se
16、x,currnode.dialnumber ,&currnode.count,&currnode.price,&currnode.money,currnode.date,currnode.readeraddr);if(feof(fp)break;if(strcmp(currdate,currnode.date)>0) fseek(fp,-j,1); fprintf(fp,"%15s %8s %13s %7d %7.2f %10.2f %13s %-50s" ,"NULL","NULL","NUL
17、L",0,0.0,0.0,"9999.99.99","NULL"); fseek(fp,2L,1); return 1;int OutputAll()FILE *fp; msgnode oa; int allcount=0; float allmoney=0; if(fp=fopen("MSG.txt","rt")=NULL)printf("Cannot open the file or Cannot find the file.please check out .n"); getch
18、();return 0; printf("%15s %8s %13s %7s %7s %10s %13s %-50sn","readername ","readsex ","number ","count ","price ","moneysum ","date ","readeraddress"); while(!feof(fp)fscanf(fp,"%s%s%s%d%f%f%s%s",oa.n
19、ame,oa.sex,oa.dialnumber,&oa.count,&oa.price,&oa.money,oa.date,oa.readeraddr);if(feof(fp)break; allcount+=oa.count; allmoney+=oa.money;if(strcmp(oa.sex,"NULL") printf("%15s %8s %13s %7d %7.2f %10.2f %13s %-50sn",,oa.sex,oa.dialnumber,oa.count,oa.price,oa.money,
20、 oa.date,oa.readeraddr); printf("%15s %8s %13s %7d %7.2f %10.2f %13s %-50sn","heji","-","-",allcount,"-",allmoney,"2007.09.04","-");return 1;int CheckReader(char *name)FILE *fp; int i,j; char ch; msgnode cr; if(fp=fopen("MSG.
21、txt","rt")=NULL)printf("Cannot open the file or Cannot find the file.please check out .");getch(); return 0;i=ftell(fp); fscanf(fp,"%s%s%s%d%f%f%s%s",,cr.sex,cr.dialnumber,&cr.count,&cr.price,&cr.money,cr.date,cr.readeraddr); j=ftell(fp); rewind(
22、fp); j=j-i;while(!feof(fp)fscanf(fp,"%s%s%s%d%f%f%s%s",,cr.sex,cr.dialnumber,&cr.count,&cr.price,&cr.money,cr.date,cr.readeraddr); i=ftell(fp);if(!strcmp(,name)printf("The reader you are checking is existed in the list.n");fseek(fp,-j,1); fscanf(fp,"
23、;%s%s%s%d%f%f%s%s" ,,cr.sex,cr.dialnumber,&cr.count ,&cr.price,&cr.money,cr.date,cr.readeraddr);if(feof(fp)break; printf("%15s %8s %13s %7d %7f %10f %13s %-50sn" ,,cr.sex,cr.dialnumber,cr.count ,cr.price,cr.money,cr.date,cr.readeraddr);return 1;int DisplayRea
24、der(char *date)FILE *fp; int i,j; msgnode cr; if(fp=fopen("MSG.txt","rt")=NULL)printf("Cannot open the file or Cannot find the file.please check out .");getch(); return 0;while(!feof(fp)fscanf(fp,"%s%s%s%d%f%f%s%s",,cr.sex,cr.dialnumber,&cr.count,&a
25、mp;cr.price,&cr.money,cr.date,cr.readeraddr);if(feof(fp)break;if(!strcmp("9999.99.99",cr.date)continue;if(strcmp(date,cr.date)<0 ) printf("%15s %8s %13s %7d %7f %10f %13s %-50sn" ,,cr.sex,cr.dialnumber,cr.count ,cr.price,cr.money,cr.date,cr.readeraddr);return 1;main
26、() char str30;int ch;Start();TextOut();scanf("%d",&ch);while(ch!=5)if(ch=0)printf("Please input the name you wanna index: _n");scanf("%s",str);if(CheckReader(str)printf("You have successfully index the reader!n"); TextOut();scanf("%d",&ch);co
27、ntinue ; if(ch=1)if(AddReader()printf("You have successfully add a reader!n");TextOut();scanf("%d",&ch);continue ;if(ch=2)printf("Please input the current date: _n");scanf("%s",str); if(UpdateMsg(str)printf("You have successfully update the list!n&quo
28、t;);TextOut();scanf("%d",&ch);continue ;if(ch=3) if(OutputAll()printf("You have successfully output the list!n");TextOut();scanf("%d",&ch);continue ;if(ch=4)printf("Please input the month you wanna display: _n");scanf("%s",str);if(DisplayReader(str)printf("You have successfully all the readers this month!n");TextOut();scanf("%d",&ch);continue ;else return;第18題原代碼:#include "stdio.h"#include "string.h"#include "stdlib.h"#define MAX 20void InitiateList(char
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 職業生涯規劃展示
- 咨詢行業融資居間合同模板
- 礦山開采勞務分包合同范本
- 2024海南雅典職業技術學校工作人員招聘考試及答案
- 藥學中的藥學制劑與藥品質量控制
- 棄土資源化利用合同書版
- 城市地下管廊工程承包施工合同
- 房地產權益轉讓合同:股權轉讓
- 化工原料買賣合同
- 國際物流習題庫(附參考答案)
- 2025年旅游專業面試試題及答案
- 液壓升降平臺施工方案
- 交通運輸部南海航海保障中心推遲公開招聘筆試高頻重點模擬試卷提升(共500題附帶答案詳解)
- 店鋪股權轉讓合同書
- 2025年河南水利與環境職業學院單招職業技能測試題庫審定版
- 教學課件:密織法律之網和強化法治之力
- 新疆潤田科技發展有限公司選煤廠建設項目環境影響報告表
- 【人教】七下英語不規則動詞表(背誦+默寫)
- 文化娛樂行業2023年度藝人經紀工作總結
- GB/T 45155-2024質量管理理解、評價和改進組織的質量文化指南
- Unit 3 Faster,highter,stronger Understanding Ideas The road to success群文閱讀說課稿 2024-2025學年高中英語人教版選擇性必修第一冊
評論
0/150
提交評論