標籤:c語言學習 c語言原創文章 c語言學習總結
項目名稱:圖書管理系統
項目寧哥
開發工具:Visual Studio 2017
程式設計語言:C語言
意義:鏈表、檔案儲存體、資料加解密、多檔案開發綜合應用
功能描述:
1:增、刪、改、查
2:資料加解密
3:檔案資料庫,帶記憶功能
4:初始化
5:搜尋
檢查時間:2017年8月6日
結構體原型:
struct _book
{
char bid[10];//編號
char name[30];//書名
int page;//頁數
int price;//價格
struct _book *next; //下一個節點的首地址
};
typedef struct _book BOOK;//簡化結構體聲明
原始碼:
650) this.width=650;" src="http://p3.pstatp.com/large/31e80004f04c4d6eb778" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
650) this.width=650;" src="http://p1.pstatp.com/large/31e80004f04d94e44ccb" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
650) this.width=650;" src="http://p3.pstatp.com/large/31ef0001fd87c55ce623" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
650) this.width=650;" src="http://p3.pstatp.com/large/31eb000237ea76444424" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
效果:
650) this.width=650;" src="http://p1.pstatp.com/large/31ec0004f40f23c42899" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
650) this.width=650;" src="http://p3.pstatp.com/large/31e80004f12c72c42e61" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
儲存資料:
650) this.width=650;" src="http://p9.pstatp.com/large/31ef0001fea58e34d803" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
650) this.width=650;" src="http://p3.pstatp.com/large/31e60002374d29631b7a" alt="C語言項目2:圖書管理系統" style="border-style:none;margin:10px auto;" />
本文出自 “C語言好爽” 部落格,請務必保留此出處http://ningcaichen66.blog.51cto.com/2902291/1969642
C語言項目2:圖書管理系統