• 大小: 16KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: C/C++
  • 标签:

资源简介

学生成绩管理系统,用c++语言实现。代码600余行,可在dev c++中运行,也可在vc++中运行。

资源截图

代码片段和文件信息

#include
#include
#include
#include
using namespace std;

int i;
struct Student 
{
    char grade[20];
    int no;
    char name[30];
    int math;
    int media;
    int english;
    int sport;
    int polity;
    int elec;
    int c_blog;
    int total;
    float average;
}stu[100]={“0“0“0“00000000}; 

int Input();
int Lookup(int m);
int Modify();
int Delete();
int save();
void Output();
void Static();
void Sort();
void Insert();

 
int main()
{

    loop:
    cout<<“                * * * * * * * * * * * * * * * * * \n“;
    cout<<“                *     请选择服务                *\n“;
    cout<<“                *  1 - 录  入  学  生  信    息 *\n“;
    cout<<“                *  2 - 查   找   学  生  信  息 *\n“;
    c

评论

共有 条评论

相关资源