函数的有关知识在后面章节会讲到,先提前了解下。在没有系统的学习完之前,咱们先来模仿着写一个样例,尝试这样的有效的学习方法。
尝试下这种学习方法。
显示功能选项
1.查询
2.取款
3.存款
4.转帐
0.退出
尝试下这种学习方法。
显示功能选项
1.查询
2.取款
3.存款
4.转帐
0.退出
用户输入功能选择。依据给出的答复,用switch多分支完毕相应的功能:
#include <iostream> using namespace std; int main() { char cChioce; void cTaiYuan(); void cJinCheng(); void cDaTong(); do { cout<<""<<endl; cout<<"五一到了,请选择一个地区做为作为旅游的地方!"<<endl<<endl; cout<<"*1. 太原市"<<endl; cout<<"*2. 晋城市"<<endl; cout<<"*3. 大同市"<<endl; cout<<"*0. 退出"<<endl; cout<<"*请选择(0-3):"; cin>>cChioce; if (cChioce=='1') // 我竟然将==写成= cTaiYuan(); else if (cChioce=='2') cJinCheng(); else if (cChioce=='3') cDaTong(); else if (cChioce=='0') break; else { cout<<"