1 Star 0 Fork 0

荷雨诗香/MY

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 936 Bytes
一键复制 编辑 原始数据 按行查看 历史
MaYiXueJie 提交于 2023-11-02 13:36 . Add files via upload
#include<iostream>
#include"mysql.h"
#include<string>
using namespace std;
#include"studentManger.h"
int main()
{
cout << "--------欢迎来到学生信息管理系统--------" << endl;
cout << "-------------按下任意键继续-------------" << endl;
getchar();
while (100)
{
int a = NULL;
cout << "---------------1.增加学生信息---------------" << endl;
cout << "---------------2.删除学生信息---------------" << endl;
cout << "---------------3.修改学生信息---------------" << endl;
cout << "---------------4.查询学生信息---------------" << endl;
cin >> a;
if (a==1)
{
studentManger::GetInstance()->zhengjia();
}
if (a==2)
{
studentManger::GetInstance()->shuanchu();
}
if (a==3)
{
studentManger::GetInstance()->gengxin();
}
if (a==4)
{
studentManger::GetInstance()->chanxun();
}
if (a>4)
{
cout << "您输入错了哦!" << endl;
}
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/changdaochayumo9/MY.git
git@gitee.com:changdaochayumo9/MY.git
changdaochayumo9
MY
MY
main

搜索帮助