學生選題信息管理系統

来源:https://www.cnblogs.com/ygsworld/archive/2018/11/17/9976381.html
-Advertisement-
Play Games

//需先建立student.txt文件#include #include #include #include #include using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -1 #define List_INI... ...


//需先建立student.txt文件

#include<fstream> #include<cstring> #include<stdio.h> #include<iostream> #include<stdlib.h> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -1 #define List_INIT_SPACE 100 //存儲空間初始分配量 #define List_INC_SPACE 10 //存儲空間分配增量 int node = 1; typedef struct Student { int age; //年齡 int student_id; //學號 int course_id; //題目編號 char student_name[40]; //姓名 char sex[10]; //性別 char Class[40]; //班級 char specialty[40]; //專業 char course_name[40]; //題目名稱 char keyword[40]; //關鍵詞 char technology[40]; }Student; typedef struct STent_list { struct Student *stu; //存儲空間基址 int length; //當前長度 int listsize; //當前分配的存儲容量(以sizeof(Student)為單位 }STent_list; int STent_listInit(STent_list &S) { //在記憶體中分配空間 S.stu = (Student*)malloc(List_INC_SPACE*sizeof(Student)); if(!S.stu) exit(OVERFLOW); //存儲空間分配失敗 //構造一個空的線性表 S.length = 0; S.listsize = List_INC_SPACE; //初始存儲容量 return OK; }//函數STent_listInit結束 void write(STent_list &S, int n) { fstream myfile; myfile.open("student.txt",ios::out|ios::binary); //fstream myfile("student.txt",ios::out|ios::binary); if(! myfile) { cout<<"該文件不能打開!"<<endl; abort(); //異常終止函數 } int count = n; myfile<<count<<endl<<endl; for(int i = 0; i <= count; i++) { myfile<<(S.stu[i]).student_id<<" "<<(S.stu[i]).student_name<<" "<<(S.stu[i]).sex<<" "<<(S.stu[i]).age<<" "<<(S.stu[i]).Class<<" "<<(S.stu[i]).specialty<<" "<<S.stu[i].course_id<<" "<<S.stu[i].course_name<<" "<<S.stu[i].keyword<<" "<<S.stu[i].technology<<" "<<endl; } myfile.close(); } /**************************************/ //函數名: read(STent_list &S) //參數: (傳入) STent_list S順序表 //返回值: int型,返回1表示創建成功,0表示失敗 //功能: 讀取順序表中的內容 /*************************************/ int read(STent_list &S) { fstream myfile; myfile.open("student.txt",ios::in|ios::binary); //fstream myfile("student.txt",ios::out|ios::binary); if(! myfile) { cout<<"該文件不能打開"<<endl; abort(); } int count; myfile.seekg(0); myfile>>count; for(int i = 0; i <= count; i++) { myfile>>S.stu[i].student_id>>S.stu[i].student_name>>S.stu[i].sex>>S.stu[i].age>>S.stu[i].Class>>S.stu[i].specialty>>S.stu[i].course_id>>S.stu[i].course_name>>S.stu[i].keyword>>S.stu[i].technology; } myfile.close(); return count; } /*****************************************/ //函數名:add(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 添加學生信息 /*****************************************/ void add(STent_list &S) { int n = read(S); int i = 0; char sign = 'F'; cout<<endl<<"請輸入增加的學生的相關信息:"<<endl; while(sign != 'N') { loop: cout<<"學號:"; cin>>S.stu[i].student_id; cout<<endl; int c = 0; while(c < i) { c++; if(S.stu[i].student_id == S.stu[i-c].student_id) { cout<<"你輸入的學號已經存在!請重新輸入" <<endl; goto loop; } } cout<<"姓名:"; cin>>S.stu[i].student_name; cout<<endl; cout<<"性別:"; cin>>S.stu[i].sex; cout<<endl; cout<<"年齡:"; cin>>S.stu[i].age; cout<<endl; cout<<"班級:"; cin>>S.stu[i].Class; cout<<endl; cout<<"專業:"; cin>>S.stu[i].specialty; cout<<endl; cout<<"題目編號:"; cin>>S.stu[i].course_id; cout<<endl; cout<<"題目名稱:"; cin>>S.stu[i].course_name; cout<<endl; cout<<"關鍵詞:"; cin>>S.stu[i].keyword; cout<<endl; cout<<"實現技術:"; cin>>S.stu[i].technology; cout<<endl; cout<<"提示:是否繼續寫入學生信息?(Y/N):"; cin>>sign; i++; } write(S, i); } /*****************************************************/ //函數名: search_student_id(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 根據學號查找學生信息 /*****************************************************/ void search_student_id(STent_list &S) { int n = read(S); int s; int i = 0; cout<<endl<<"查找學生信息:"<<endl; cout<<"請輸入需要查找學生的學號:"<<endl; cin>>s; while((S.stu[i].student_id - s) != 0 && i < n) i++; if(i == n) { cout<<"提示: 對不起,無法找到該學生的信息! "<<endl; } else { cout<<"***************************"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; } } /*******************************************************/ //函數名: search_student_name(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 根據學生姓名查找學生信息 /*******************************************************/ void search_student_name(STent_list &S) { int n = read(S); char a[100]; cout<<"請輸入需要查找的姓名:"<<endl; cin>>a; for(int i = 0; i < n; i++) if(strcmp(S.stu[i].student_name, a) == 0) { cout<<"****************************"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; } } /*******************************************************/ //函數名: search_course_id(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 根據學生課程設計的編號查找 /*******************************************************/ void search_course_id(STent_list &S) { int n = read(S); int b; int i = 0; cout<<"請輸入需要查找的題目編號:"<<endl; cin>>b; while((S.stu[i].course_id - b) != 0 && i < n) i++; if(i == n) { cout<<"提示:對不起,無法找到該信息!"<<endl; } else { for(i = 0; i < n; i++) if(S.stu[i].course_id - b == 0) { cout<<"******************************"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; } } } /****************************************************/ //函數名: search_course_name(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 根據課程設計名稱查找 /***************************************************/ void search_course_name(STent_list &S) { int n = read(S); char c[100]; cout<<"請輸入需要查找的題目名稱:"<<endl; cin>>c; for(int i = 0; i < n; i++) if(strcmp(S.stu[i].course_name, c) == 0) { cout<<"******************************"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; } } /******************************************************/ //函數名: search(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 選擇查找關鍵詞 /******************************************************/ void search(STent_list &S) { int n = read(S); cout<<"**(1)根據學號查詢 **"<<endl; cout<<"**(2)根據姓名查詢 **"<<endl; cout<<"**(3)根據編號查詢 **"<<endl; cout<<"**(4)根據名稱查詢 **"<<endl; cout<<endl; int c; cout<<"請輸入選擇: "; cin>>c; switch(c) { case 1: search_student_id(S);break; case 2: search_student_name(S);break; case 3: search_course_id(S);break; case 4: search_course_name(S);break; default: cout<<"輸入錯誤,請重新輸入!"<<endl; } write(S, n); } /*******************************************/ //函數名: student_alter(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 修改學生信息 /******************************************/ void student_alter(STent_list &S) { int n = read(S); int s; int i = 0; cout<<endl<<"修改學生信息:"<<endl; cout<<"請輸入需要修改學生的學號:"<<endl; cin>>s; while((S.stu[i].student_id - s) != 0 && i < n) i++; if(i == n) { cout<<"提示:對不起,無該學生的信息!!!"<<endl; } else { cout<<"該學生的信息:"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; cout<<"請重新輸入該學生的信息"<<endl; cout<<"學號:"; cin>>S.stu[i].student_id; cout<<endl; cout<<"姓名:"; cin>>S.stu[i].student_name; cout<<endl; cout<<"性別:"; cin>>S.stu[i].sex; cout<<endl; cout<<"年齡:"; cin>>S.stu[i].age; cout<<endl; cout<<"班級:"; cin>>S.stu[i].Class; cout<<endl; cout<<"專業:"; cin>>S.stu[i].specialty; cout<<endl; cout<<"題目編號:"; cin>>S.stu[i].course_id; cout<<endl; cout<<"題目名稱:"; cin>>S.stu[i].course_name; cout<<endl; cout<<"關鍵詞:"; cin>>S.stu[i].keyword; cout<<endl; cout<<"實現技術:"; cin>>S.stu[i].technology; cout<<endl; char c; cout<<"是否保存數據?(y/n)"<<endl; cin>>c; if(c == 'y') cout<<"修改成功!"<<endl; write(S, n); } } /**************************************/ //函數名: student_delete(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 刪除學生信息 /*************************************/ void student_delete(STent_list &S) { int n = read(S); int s; int i = 0, j; cout<<endl<<"刪除學生信息:"<<endl; cout<<"請輸入需要刪除學生的學號:"<<endl; cin>>s; while((S.stu[i].student_id - s) != 0 && i < n) i++; if(i == n) { cout<<"提示:記錄為空!!!"<<endl; } else { cout<<"提示:已成功刪除!"<<endl; cout<<"你要刪除的信息如下:"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; for(j = i; j < n-1; j++) { S.stu[j].student_id = S.stu[j+1].student_id; strcpy(S.stu[j].student_name,S.stu[j+1].student_name); strcpy(S.stu[j].sex,S.stu[j+1].sex); S.stu[j].age = S.stu[j+1].age; strcpy(S.stu[j].Class,S.stu[j+1].Class); strcpy(S.stu[j].specialty,S.stu[j+1].specialty); S.stu[j].course_id = S.stu[j+1].course_id; strcpy(S.stu[j].course_name,S.stu[j+1].course_name); strcpy(S.stu[j].keyword,S.stu[j+1].keyword); strcpy(S.stu[j].technology,S.stu[j+1].technology); } } write(S, n-1); } /******************************************/ //函數名: total(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 統計學生信息 /*****************************************/ void total(STent_list &S) { int n = read(S); char c[100]; int ok = 0; cout<<"請輸入需要查找的題目名稱:"<<endl; cin>>c; for(int i = 0; i < n; i++) if(strcmp(S.stu[i].course_name, c) == 0) { cout<<"你要統計的信息如下:"<<endl; cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; ok = 1; } if(ok == 0) { cout<<"沒有此條記錄!"<<endl; } } /********************************************/ //函數名: display(STent_list &S) //參數: (傳入)STent_list S,順序表 //返回值: 空 //功能: 輸出所有學生的全部信息 /********************************************/ void display(STent_list &S) { int n = read(S); cout<<endl<<"顯示全部學生信息:"<<endl; if(! S.stu) { cout<<"沒有記錄"<<endl; } else { for(int i = 0; i < n; i++) { cout<<"學號:"<<S.stu[i].student_id<<endl; cout<<"姓名:"<<S.stu[i].student_name<<endl; cout<<"性別: "<<S.stu[i].sex<<endl; cout<<"年齡:"<<S.stu[i].age<<endl; cout<<"班級:"<<S.stu[i].Class<<endl; cout<<"專業:"<<S.stu[i].specialty<<endl; cout<<"題目編號:"<<S.stu[i].course_id<<endl; cout<<"題目名稱:"<<S.stu[i].course_name<<endl; cout<<"關鍵詞:"<<S.stu[i].keyword<<endl; cout<<"實現技術:"<<S.stu[i].technology<<endl; } } } int main() { char choice; cout<<endl<<endl<<"\t\t\t"<<" **歡迎使用課程設計選題管理系統**" <<endl<<endl; cout<<"\t\t\t"<<"1.*********添加新的記錄**********"<<endl; cout<<"\t\t\t"<<"2.*********查詢記錄信息**********"<<endl; cout<<"\t\t\t"<<"3.*********修改學生信息**********"<<endl; cout<<"\t\t\t"<<"4.*********刪除學生信息**********"<<endl; cout<<"\t\t\t"<<"5.*********統計所有記錄**********"<<endl; cout<<"\t\t\t"<<"6.*********顯示所有記錄**********"<<endl; cout<<"\t\t\t"<<"0.********* 退出系統 **********"<<endl; STent_list S; STent_listInit(S); cout<<"\t\t\t"<<"請輸入您的選擇:"; cin>>choice; if(choice == '0') { cout<<endl<<"\t"<<"\t"<<"\t"<<"謝謝使用本系統! "<<endl<<endl; exit(0); } else if(choice == '1') { add(S); system("pause"); main(); } else if(choice == '2') { search(S); system("pause"); main(); } else if(choice == '3') { student_alter(S); system("pause"); main(); } else if(choice == '4') { student_delete(S); system("pause"); main(); } else if(choice == '5') { total(S); system("pause"); main(); } else if(choice == '6') { display(S); system("pause"); main(); } else { cout<<"\t"<<"輸入錯誤,請重新輸入你的選擇:"; main(); } return 0; }

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 編輯器選擇 對js的編輯器選用,有很多,能對html編輯的,也能對js編輯,比如notepad++,visual studio code,webstom,atom,pycharm,sublime text,Hbuilder等等的,根據你的喜好來就行 調試 在我們編寫js時,也可以像調整css樣式一樣... ...
  • Koa2學習(一)環境搭建 koa2腳手架 koa2服務安裝 koa2 generator目錄結構 什麼是 Koa2 koa 是由 Express 原班人馬打造的,致力於成為一個更小、更富有表現力、更健壯的 Web 框架。 使用 koa 編寫 web 應用,通過組合不同的 generator,可以免 ...
  • 【原因】 因為這個表和另一個表是有一對多關係的,當序列化表1的時候,會找到和另一個表2關聯的欄位,就會到另一個表2中序列化,然後另一個表2中也有一個欄位和表1相關聯.這樣.序列化就會發生這種錯誤! 【解決方案】 /註:這裡值得註意的是,當有外鍵向關聯時,必須要指定序列化元素,如果沒有外鍵相關聯,直接 ...
  • 一、Hibernate簡介(網上搜的,理解性地看看) 1.概念:Hibernate是持久層(數據訪問層)的框架,對JDBC進行了封裝,是對資料庫訪問提出的面向對象的解決方案。 2.作用:使用Hibernate可以直接訪問對象,Hibernate自動將訪問轉換成SQL執行,從而實現簡介訪問資料庫的目的 ...
  • POSA系列的開山之作,系統編程和中間件編程的一些架構模式,翻譯一般,架構師必讀 需要IT編程經典書籍資源大合集百度網盤鏈接的加qq 3083709327,另本人願意有償帶小白學python,幫助你答疑解惑,幫助你解決問題,指導你找工作,帶你入行。相信我有人帶著你的話可以少走彎路,成功入行拿高薪。北 ...
  • #感興趣的可以去訂閱極客時間前谷歌工程師的專欄:數據結構與演算法之美,個人覺得寫的很不錯。這裡只是我自己做的一個簡單的筆記 (一) 對數階時間複雜度 上面這段代碼,i 從1開始,迴圈一次乘於2,當大於n時,迴圈結束,我們可以得到2x = n。要計算上面這段代碼的時間複雜度,求解x的值就行了,根據數學基 ...
  • (一)希爾排序 先將整個待排記錄序列分割成若幹個子序列,然後分別進行直接插入排序,待整個序列中的數據基本有序時,再對全體記錄進行一次直接插入排序。具體做法是: 1) 算出增量序列 2) 根據增量序列對待排記錄進行直接插入排序 (二)桶排序 ...
  • 首先給大家推薦幾個網頁: http://www.mybatis.cn/ http://blog.csdn.net/isea533/article/category/2092001 http://www.mybatis.org/mybatis-3/zh/index.html http://www.my ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...