1 Star 1 Fork 0

Linngdu664/C++数据结构实验

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CtrlUtil.h 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
Linngdu664 提交于 2022-10-30 11:03 . 杂项提交,文件格式化
//
// Created by 66477 on 2022/9/28.
//
#ifndef DATA_STRUCTURE_CTRLUTIL_H
#define DATA_STRUCTURE_CTRLUTIL_H
class CtrlUtil {
public:
CtrlUtil *start() {
while (true) {
cout << "(1-3)Which question to test? :";
int i;
cin >> i;
switch (i) {
case 1:
cout << "(question1)" << endl;
q1();
break;
case 2:
cout << "(question2)" << endl;
q2();
break;
case 3:
cout << "(question3)" << endl;
q3();
break;
default:
return this;
}
cout << "-------------" << endl;
}
}
void q1() {
}
void q2() {
}
void q3() {
}
};
#endif //DATA_STRUCTURE_CTRLUTIL_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Linngdu664/cpp-data-structure-experiment.git
git@gitee.com:Linngdu664/cpp-data-structure-experiment.git
Linngdu664
cpp-data-structure-experiment
C++数据结构实验
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385