赞
踩
问题及代码:
- /*
- *Copyright (c)2014,烟台大学计算机与控制工程学院
- *All rights reserved.
- *文件名称:text.cpp
- *作 者:赵敏
- *完成日期:2014年12月12日
- *版 本 号:v1.0
- *
- *问题描述:略。
- */
- #include<iostream>
- #include<cstdio>
- using namespace std;
- void eat();
- void sleep();
- void hitdoudou();
- void run(void (*f)());
- int main()
- {
- int iChoice;
- do
- {
- cout<<"请选择(1-吃;2-睡;3-打;其他-退)";
- cin>>iChoice;
- if(iChoice==1)
- run(eat);
- else if(iChoice==2)
- run(sleep);
- else if(iChoice==3)
- run(hitdoudou);
- else
- return 0;
- }
- while(true);
- return 0;
- }
- void eat()
- {
- cout<<"我吃吃吃。。。"<<endl;
- }
- void sleep()
- {
- cout<<"我睡睡睡。。。"<<endl;
- }
- void hitdoudou()
- {
- cout<<"就是打你。。。"<<endl;
- }
- void run(void (*f)())
- {
- f();
- }
运行结果:
学习心得:
最后一个函数有点不懂。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。