C C 學生管理系統

2021-08-18 20:50:11 字數 1152 閱讀 6346

使用說明:

一:設計之初沒考慮到「已存在檔案進行追加」的功能(有興趣的童鞋可以試試),所以執行程式第一步只能是先選「1」,新建乙份表單:

標準樣例(名字:三個中文字元,學號:12位數字,性別:男/女,年齡:兩位整數)如下:(可以直接複製)

//名字純粹亂打的哈qaq

王二哈 123123123123 男 28

李邊牧 111111111111 男 08

趙師石 100100100100 男 35

李龍龍 123456789123 男 48

蔣石石 122222207854 男 91

楊慧慧 255555454444 女 34

二:執行程式的順序為:

執行程式,選1,複製樣例,建立表單。(不需要事先在d盤建立「table.txt"檔案)

第1步進行之後,就可以選擇去「查詢」、「修改」、「刪除」或者「排序」操作,每次操作後都可以開啟d盤的table.txt檢視操作後的結果。

#include#include#include#include#include#includeusing namespace std; 

file *fp;

struct stu*p;

class student;

~student(){};

int num=0;

void addinf(); //增加資訊 1 //inf:information

void showinf(); //顯示資訊 2 //

void seacinf(); //查詢資訊 3

void modify(); //修改資訊 4

void delinf(); //刪除資訊 5

void sortinf(); //資訊排序 6

void menu(); //功能主選單

void screen(); //介面停留 };

void student::addinf()

fp=fopen("d:\\table.txt","w+");

if(fp==null)

else

}int main()

C C 系列之學生管理系統

define crt secure no warnings include include include include define saferealse p using namespace std author ysd time 2012.3.20 history 1.0 editor mic...

基於C C 的學生管理系統

一 需求分析 1 某學校有本科生和研究生兩類學生。a.本科生資訊 學號 姓名 性別 專業 年級 班級 高數 成績 英語成績 c語言 總成績 班級排名 年級排名 其中 學號 姓名 性別 專業 年級 班級 高數 成績 英語成績 c語言成績 為輸入項,總成績是計算項,班級排名是總成績在班內名次,年級排名是...

C C 專案分享 學生管理系統

c c 專案分享 學生管理系統 乙個簡單的c c 專案 學生管理系統 程式未完全寫完 用鍊錶儲存資訊 有興趣的同學可以自己進行修改 include 自定義資料型別 結構體 學生 學號 姓名性別 年齡班級 成績 typedef struct student student 鍊錶 鍊錶 就像是一列火車,...