STUDENT SYSTEM

发布时间 2023-12-22 20:04:17作者: hanxuyao
#include <bits/stdc++.h>
using namespace std;
struct student{
    int id;
    string name;
    int age;
    int grade;
}s;
void zjm()
{
    cout<<"Welcome to the Student Management System!"<<endl;
    cout<<"Please make the following choices"<<endl;
    cout<<"ONE   New Student Information"<<endl;
    cout<<"TWO   Search for student information"<<endl;
    cout<<"THREE Modify student information"<<endl;
    cout<<"FOUR  Delete student information"<<endl;
    cout<<"FIVE  Exit student information"<<endl; 
}
int main(){
    int NUM;
    while(true)
    {
        zjm();
        cin>>NUM;
        if(NUM==1){
            
        }    
    }
    return 0;
}