【C++】學生管理系統

来源:https://www.cnblogs.com/water-wells/archive/2022/07/09/16462237.html
-Advertisement-
Play Games

在項目中,有些代碼需要被各個模塊調用。為瞭解耦,可以把這些公共部分的代碼整合到一個子項目中,併發布到本地,實現多個項目共用代碼。 新建子項目。 maven -clean 命令,測試maven環境;測試通過後使用maven -install 將項目打包併發布到本地倉庫。 在其他項目中,通過<depen ...


【C++】學生管理系統 一道非常經典的C語言題目,用C++實現   題目如下:
  1. 輸入功能:由鍵盤輸入10個學生的學號、姓名、三科成績,並計算出平均成績和總成績,然後將它存入文件stud.dat。
  2. 插入功能:按學號增加一個學生信息,並將其插入到stud.dat中。
  3. 排序功能,按要求對學生信息進行排序,分為按學號和按總成績進行排序兩種情形,並輸出結果。
  4. 查詢功能:按要求查找學生信息,分為按學號和姓名進行查詢兩種情形,並輸出結果。
  5. 刪除功能:按要求將學生信息刪除,分為按學號和姓名進行刪除兩種情形。
  6. 輸出功能:按學號輸出學生信息。

 

整體思路:

  1. 程式啟動的時候判斷文件(stu.dat)是否存在,如果文件不存在,則正常執行,如果文件存在,先獲取文件中學生的個數,根據學生的個數創建對象數組,將內容創建成學生對象,保存在對象數組1里,再向下執行。

  2. 用Switch語句來判斷不同的輸入。

  3. 新增學生,根據 原來對象數組1儲存的人數+新增的人數 來確定新的動態數組2的大小,將原本對象數組1內的內容保存在新的對象數組2里,再將新增的內容儲存在後面,每次新增完,直接保存到文件。

  4. 排序學生,根據學號或者姓名,寫一個數組的冒泡排序即可

  5. 查詢學生,寫一個函數,判斷學生是否存在,如果存在返回學生所在數組的下標,根據下標輸出內容

  6. 刪除學生,用查詢學生寫的函數,根據下標刪除學生

  7. cout對象數組裡的內容就完事

 

實現代碼

#include <iostream>
#include<fstream>
#include<string>
#define line for (int n = 0; n <= 100; n++) cout << "-"
#define FILENAME "stdu.dat"

using namespace std;
class student { //學生類
public:
    int Is_Exist(string stuId, int a);
    int get_student_number(); //獲取文件中學生人數
    bool File_Is_Empty; //文件是否為空的標識
    student *studentArray; //將文件中的內容,以student對象方式儲存在studentArray[]數組中
    int student_number; //學生人數
    string studentId; //學號
    string name;   //姓名
    float score[3];//成績*3
    float Total;    //    總分
    int Average;//平均分

    void sort(int n=1); //排序函數
    void delete_stu(); //刪除學生
    void init(); //初始化內容,將文件中的內容讀到studentArray中
    void save(); //保存文件
    void show();//展示界面
    void add_stu(int number = 1); //添加學生
    void showInfo(); //展示學生信息
    void search();//搜索學生
    student() //預設構造函數,判斷文件是否為空,設置File_Is_Empty值
    {
        ifstream ifs;
        ifs.open(FILENAME, ios::in);
        if (!ifs.is_open())
        {
            this->student_number = 0;
            this->studentArray = NULL;
            this->studentId = "0";
            this->name = "0";
            this->score[0] = 0;
            this->Average = 0;
            this->Total = 0;
            this->File_Is_Empty = true;
            ifs.close();
            return;
        }
        char c;
        ifs >> c;
        if (ifs.eof())
        {
            //文件空
            this->student_number = 0;
            this->studentArray = NULL;
            this->studentId = "0";
            this->name = "0";
            this->score[0] = 0;
            this->Average = 0;
            this->Total = 0;
            this->File_Is_Empty = true;
            ifs.close();
            return;
        }
        int num = this->get_student_number(); //獲取文件中學生數量
        this->student_number = num;
        //cout << "現在學生人數為:" << num << endl;;
        //system("pause");
    };
    ~student() //析構函數
    {
        delete[]this->studentArray;
        this->studentArray = NULL; //防止指針變為野指針
    }
    student(string stuId,string stuName, float stuScore[3]) //帶參數的構造函數
    {
        this->studentId = stuId;
        this->name = stuName;
        for (int i = 0; i < 3; i++)
            this->score[i] = stuScore[i];
        this->Average = (stuScore[0] + stuScore[1] + stuScore[2]) / 3;
        this->Total = stuScore[0] + stuScore[1] + stuScore[2];
    };

};
void student::sort(int n) //排序,當n=1的時候為按學號排序,n=2為按總成績排序
{
    int num1; //學號在設計的時候是string類型,用int類型排序需要atoi,用num接收轉換過的值
    int num2; //
    student a; //用於交換對象數組的中間變數

    if (this->File_Is_Empty) //判斷文件是否為空
    {

        cout << "數據文件不存在或者為空\n";
        system("pause");
    }
    else
    {
        cout << "3.學生信息排序\n";
        if (n == 1)
        {
            cout << "將學生信息按學號順序排序\n";
            for (int i = 0; i < this->student_number - 1; i++)//冒泡排序 
            {
                for (int t = 0; t < this->student_number - 1 - i; t++)
                {
                    num1 = atoi(this->studentArray[t].studentId.c_str()); //將string類型變數變為int類型
                    num2 = atoi(this->studentArray[t + 1].studentId.c_str());
                    if (num1 > num2)
                        a = this->studentArray[t + 1], this->studentArray[t + 1] = this->studentArray[t], this->studentArray[t] = a;
                }
            }
        }
        if (n == 2)
        {
            cout << "將學生信息按總成績順序排序\n";
            for (int i = 0; i < this->student_number - 1; i++)//冒泡排序 
            {
                for (int t = 0; t < this->student_number - 1 - i; t++)
                {

                    if (this->studentArray[t].Total > this->studentArray[t + 1].Total)
                        a = this->studentArray[t + 1], this->studentArray[t + 1] = this->studentArray[t], this->studentArray[t] = a;
                }
            }
        }
    }
}
void student::search() //查找學生成績
{
    string id;
    int ret;   //studentArray[]的下標,在Is_Exist()中
    int a = 1; //判斷根據學號查找還是姓名查找
    cout << "4.查找學生成績\n" << "1.按照學號查找\t2.根據姓名查找\n輸入你的選項>";
    cin >> a; 
    if (a == 1)
    {
        cout << "請輸入學號:", cin >> id;
        ret = this->Is_Exist(id, 1);
    }
    else if (a == 2)
    {
        cout << "請輸入姓名:", cin >> id;
        ret = this->Is_Exist(id, 2);
    }
    else
    {
        ret = this->Is_Exist(id, 1);
    }
    if (ret == -1)
    {
        system("cls");
        cout << "學生不存在" << endl;
    }
    else
    {
        cout << "查找成功,下麵為該學生信息\n" << endl;
        cout << "學號:" << this->studentArray[ret].studentId
            << " 姓名:" << this->studentArray[ret].name << endl
            << "各門成績:語文:" << this->studentArray[ret].score[0]
            << " 數學:" << this->studentArray[ret].score[0]
            << " 英語:" << this->studentArray[ret].score[2]
            << " 平均成績:" << this->studentArray[ret].Average
            << " 總成績:" << this->studentArray[ret].Total << endl;
    }
    system("pause");
    
}
int student::Is_Exist(string stuId,int a)
{
    //a=1 則使用學生學號查找
    //a=2 則使用學生姓名查找
    if (File_Is_Empty) //判斷文件是否不存在或者為空,如果為空則返回-2
    {
        cout << "數據文件不存在或者為空\n";
        system("pause");
        return -2; 
    }
    for (int i = 0; i < this->student_number; i++) 
    {
        if ((a==1)&&(this->studentArray[i].studentId == stuId)) //根據學號查找
        {
            return i;
        }
        if ((a == 2) && (this->studentArray[i].name == stuId)) //根據姓名查找
        {
            return i;
        }
    }
    return -1; //如果沒找到返回-1
}
void student::delete_stu() //刪除學生
{
    int ret; //接收 Is_Exist的返回值,返回值是此學生在studentArray[]里的下標
    string id; //可以用來接收學號或者姓名
    int a = 1; //判斷是按照學生學號尋找還是根據學生姓名尋找
    cout << "5.刪除學生成績\n"
        << "1.按照學號刪除\t2.根據姓名刪除\n輸入你的選項>";
    cin >> a;
    if (a == 1) //按照學生學號查找
    {
        cout << "請輸入學號:", cin >> id;
        ret = this->Is_Exist(id, 1);
    }
    else if(a==2)//按照學生姓名
    {
        cout << "請輸入姓名:", cin >> id;
        ret = this->Is_Exist(id, 2);
    }
    else  //預設按照學生學號進行查找
    {
        cout << "請輸入學號:", cin >> id;
        ret = this->Is_Exist(id, 1);
    }
    if (ret == -1) //返回值為-1則學生不存在
    {
        system("cls");
        cout << "學生不存在"<<endl;
    }
    else if(ret == -2) //返回值為-2文件不存在或為空,直接退出函數
    {
        return;
    }
    else //如果學生信息存在,並且ret是studentArray[]中的下標
    {//輸出要刪除的學生信息
        cout << "該學生的信息將被刪除"<<endl;
        cout << "學號:" << this->studentArray[ret].studentId
            << " 姓名:" << this->studentArray[ret].name << endl
            << "各門成績:語文:" << this->studentArray[ret].score[0]
            << " 數學:" << this->studentArray[ret].score[0]
            << " 英語:" << this->studentArray[ret].score[2]
            << " 平均成績:" << this->studentArray[ret].Average
            << " 總成績:" << this->studentArray[ret].Total << endl;
        for (int i = ret; i < this->student_number - 1; i++)
        {
            this->studentArray[i] = this->studentArray[i + 1];
        }
        this->student_number--;
        this->save();
    }
    system("pause");
}
void student::init()
{
    string name;       //用來儲存讀取到的姓名
    string student_id;//用來儲存讀取到的學號
    int i = 0;            //標識符,用來把實例化的類儲存到對應的對象數組
    float score[3];        //用來儲存讀取到的成績
    float total;        //用來儲存讀取到的成總分
    int average;        //用來儲存讀取到的平均分
    ifstream inf;        //實例化一個文件對象
    this->studentArray = new student[this->student_number]; //根據讀取到的學生數量開闢空間,學生數量
    inf.open(FILENAME, ios::in);
    while (inf >> student_id && inf >> name && inf >> score[0]&& inf >> score[1] && inf >> score[2] && inf >> average && inf >> total)
    {        //格式化讀取文件,從文件讀到變數
        student stu(student_id, name, score); //使用讀到的值實例化student對象
        this->studentArray[i] = stu; //把實例化的對象放到stu1對象的studentArray中
        i++;
    }

}
int student::get_student_number() //獲取文件中學生的數量,在add_stu()函數中加上需要增加的學生數量,為最新需要開闢的空間的大小
{ 
    string name;
    string student_id;
    int num=0;  //每格式化讀取一塊數據,則加1人數
    float score[3];
    float total;
    int average;
    ifstream inf;
    inf.open(FILENAME, ios::in);
    while (inf >> student_id && inf >> name && inf >> score[0] && inf >> score[1] && inf >> score[2] && inf >> average && inf >> total)
    {
        num++;
    }
    inf.close();
    return num; //返回學生數量
}
void student::save() //將stu1中studentArray中的每個student對象儲存到文件中
{
    ofstream ofs;
    ofs.open(FILENAME,ios::out);
    for (int i = 0; i < this->student_number; i++)
    {
        ofs << this->studentArray[i].studentId << " " 
            << this->studentArray[i].name << " " 
            << this->studentArray[i].score[0] << " " 
            << this->studentArray[i].score[1] << " " 
            << this->studentArray[i].score[2]<< " "
            <<this->studentArray[i].Average<<" "<< this->studentArray->Total<<" ";
    }
}
void student::showInfo() //顯示學生信息
{
    if (this->File_Is_Empty) //構造函數里的文件標識符,判斷文件是否存在或者為空,每實例化一個對象都檢查一遍
    {
        system("cls");
        cout << "文件不存在或內容為空,請先輸入數據\n";
    }
    else
    { //文件不為空則輸出stu1中studentArray中儲存的內容
        for (int i=0;i<this->student_number;i++)
        {
            cout << "學號:" << this->studentArray[i].studentId
                << " 姓名:" << this->studentArray[i].name << endl
                << "各門成績:語文:" << this->studentArray[i].score[0]
                << " 數學:" << this->studentArray[i].score[1]
                << " 英語:" << this->studentArray[i].score[2]
                << " 平均成績:" << this->studentArray[i].Average
                << " 總成績:" << this->studentArray[i].Total << endl;
            line;
            cout << endl;
        }
    }
    system("pause");
}
void student::add_stu(int add_number) //添加學生
{
    //計算需要的新的空間大小
    int newsize = this->student_number + add_number; //需要開闢的空間 = 文件中學生的人數+需要添加的數量
    //cout << "newxize=" << newsize;
    student *newspace = new student[newsize]; //開闢記憶體空間
    student *stu3;
    string name;
    string studentId;
    float score[3];
    if (this->studentArray!= NULL) //如果studentArray不為空就先將studentArray中的內容先複製到newspace數組中,再在newspace中增加學生信息,
                                        //最後再將newspace的內容複製到studentArray中,實現動態數組
    {
        for (int i = 0; i < this->student_number; i++)
        {
            newspace[i] = this->studentArray[i];
        }
    }
    for (int i = 0; i < add_number; i++) //輸入學生信息
    {
        cout << "請輸入學生姓名:", cin >> name, cout << endl;
        cout << "請輸入學生學號:", cin >> studentId, cout << endl;
        cout << "請輸入學生語文成績:", cin >> score[0], cout << endl;
        cout << "請輸入學生數學成績:", cin >> score[1], cout << endl;
        cout << "請輸入學生英語成績:", cin >> score[2], cout << endl;
        line;
        cout << endl;
        student stu3(studentId, name, score); //將輸入的內容實例化成對象
        newspace[this->student_number + i] = stu3; //將對象依次儲存到newspace中
    }
    delete[] this->studentArray;
    this->studentArray = newspace; //將newspace賦給studentArray,用來在別的成員函數中訪問
    this->student_number = newsize; //更新學生人數大小
    this->File_Is_Empty = false; // 輸入了內容以後,文件不為空
    this->save(); //保存到文件中
    cout << "添加成功"<<endl;
    
    system("pause");

}
void student::show()
{
    cout << "1.輸入學生成績" << endl << "2.增加學生成績" << endl << "3.學生信息排序"
        << endl << "4.查找學生成績" << endl << "5.刪除學生成績" << endl << "6.顯示學生成績"
        << endl << "7.安全退出系統" << endl;
    line;
    cout << endl;
    cout<< "輸入你的選擇>:";

}
student stu1; //實例化對象,此時已經得到文件中的學生數量
int main()
{
    int choice=7;
    
    stu1.init(); // 將文件里的內容按照格式讀入記憶體,儲存到
//    cout << "stu1里的人數" << stu1.student_number;
//    system("pause");
    while (true)
    {
        system("cls");
        stu1.show();
        cin >> choice;
        line;
        cout << endl;
        
        if (cin.good() && choice <= 7 && choice >= 1)  //判斷用戶輸入是否合法
        {
            switch (choice)
            {
            case 1: 
                //添加學生功能,預設參數為1,用來增加學生時直接調用,初始化添加十個學生時傳遞參數10
                stu1.add_stu(10);
                break;
            case 2:
                //增加學生,要求按照學號順序插入,則在增加學生後調用排序函數,再進行保存
            {
                stu1.add_stu();
                stu1.sort();
                stu1.save();
            }
                break;
            case 3:
                //排序功能
            {
                int n = 1;
                cout << "1.按照學號排序\t2.按照總成績排序\n";
                cin >> n;
                stu1.sort(n);
                stu1.showInfo();
            }
                    break;
            case 4:
                //搜索功能
                stu1.search();
                break;
            case 5:
                //刪除功能
                stu1.delete_stu();
                break;
            case 6:
                //顯示學生信息
                stu1.showInfo();
                break;
            case 7:
                //退出程式
                return 0;
                break;
            default	   

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

-Advertisement-
Play Games
更多相關文章
  • 基本網路配置 網路配置的幾個相關設置: 主機名 IP/netmask 路由:預設網關 DNS伺服器(主DNS伺服器、次DNS伺服器、第三個DNS伺服器) 實現名字解析的 主機名設置 修改主機名的方法: 持久化配置: 方法一:使用hostnamectl命令 #(只支持centos7以上的版本),修改了 ...
  • 1、前言 直接看代碼 uint32_t Time_Interval() { static uint32_t old_time_tick; uint32_t data; data = sys_time_tick_ms - old_time_tick; old_time_tick = sys_time_ ...
  • 寫在前面 大家在做板級電源設計的時候往往會有一種慣性思維: 要麼選擇自己曾經用過的電源晶元來搭建電路; 要麼直接選公司或者實驗室里現有的一些模塊; 但是你選的這個電源器件很有可能是不符合你的使用場景的,這就會造成很多的問題。 經典的不一定是最好的,經典也有過時的時候! 當然涉及到板級電源的設計是一個 ...
  • 零除的處理 用NULLIF(col, 0)可以避免複雜的WHEN...CASE判斷, 例如 ROUND(COUNT(view_50.amount_in)::NUMERIC / NULLIF(COUNT(view_50.amount_out)::NUMERIC, 0),2) AS out_divide ...
  • 一、Css基本語法 1.Html和Css沒分開時 點擊查看代碼 <!DOCTYPE html> <html lang="en"> <head> <!--規範,<style>可以編寫css的代碼,每一個聲明,最好使用分號隔開 語法: 選擇器{ 聲明1; 聲明2; 聲明3; } --> <meta ch ...
  • 1.前端傳數據後端接收: 用戶在登錄界面輸入用戶名和密碼傳給後端controller,由後端判斷是否正確! 在html界面中要傳遞的數據name命名,通過表單的提交按鈕會傳遞給響應的controller,在controller將需要的name接收! <input type="text" name=" ...
  • 本章是系列文章的第十章,主要介紹CPU流水線、超標量體系架構等硬體設計,和編譯器怎麼使能這些功能來減少計算的時鐘周期。 本文中的所有內容來自學習DCC888的學習筆記或者自己理解的整理,如需轉載請註明出處。周榮華@燧原科技 10.1 概念 指令級並行是是讓一個程式中的多個操作同時執行的方法 指令級並 ...
  • 在微服務架構下,我們習慣使用多機器、分散式存儲、緩存去支持一個高併發的請求模型,而忽略了單機高併發模型是如何工作的。這篇文章通過解構客戶端與服務端的建立連接和數據傳輸過程,闡述下如何進行單機高併發模型設計。 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...