- 博客(13)
- 收藏
- 关注
原创 黑马程序员C++ 案例四 机房预约系统
源文件 机房预约系统.cpp#include<iostream>using namespace std;#include"identity.h"#include<fstream>#include<string>#include"globalFile.h"#include"student.h"#include"manager.h"#include"teacher.h"//进入学生子菜单界面void studentMenu(Identity*&
2022-01-18 18:21:11
8693
2
原创 黑马程序员C++ 案例三 演讲比赛流程
源文件 演讲比赛管理系统.cpp#include<iostream>using namespace std;#include"speechManger.h"#include<string>#include<ctime>int main(){ //随机数种子 srand((unsigned int)time(NULL)); //通过创建管理类对象 SpeechManager sm; int choice = 0; ...
2022-01-18 18:20:14
538
原创 黑马程序员C++ 案例二 职工管理系统
源文件 职工管理系统.cpp#include<iostream>using namespace std;#include"workerManager.h"//#include"worker.h"//#include"employee.h"//#include"manager.h"//#include"boss.h"int main(){ /*Worker* worker = NULL; worker = new Employee(1,"张三",1);...
2022-01-18 18:19:07
1656
原创 黑马程序员C++ 案例一 手机通讯录
//封装函数改界面 如 void showMenu//在main函数中调用封装好的函数#include<iostream>using namespace std;#include<string>#define MAX 1000//设计联系人的结构体struct Person{ //姓名 string m_Name; //性别 1男 2女 int m_Sex; //年龄 int m_Age; //电话 ...
2022-01-18 18:18:00
318
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人