資源簡介
運用C語言 實現工程師信息系統的輸入、輸出、刪除、修改、導入、查詢、打印等模塊。
代碼片段和文件信息
#include?
#include?
#include?
#include?
struct?DateStruct ???//日期結構用于存儲工程師的出生生日
{????int?year;
?int?month;
?int?day;
};
struct?EngineerStruct
{
?int?num;?????????//工程師編號
?char?name[20];??//工程師姓名
?int?sex;????????//工程師性別
?int?xueli;??????//工程師學歷
?char?addr[30];??//工程師地址
?char?tel[20];???//工程師電話
?char?home[20];??//工程師籍貫
?int?wy;?????????//工程師工齡
?struct?DateStruct?birth;??//?工程師生日
?float?wage;????????//工程師基本工資
}Engineer[10];????????/*定義一個結構體*/
void?menu()???/*菜單函數*/
{
?printf(“\n“);
?printf(“????===========================================================\n“);
?
?printf(“??????????????????????工程師信息管理系統????????????????????????\n“);
?
?printf(“????===========================================================\n“);
?print
- 上一篇:學生信息管理系統C語言實現
- 下一篇:VisualC++開發GIS系統:開發剖析源碼
評論
共有 條評論