ch8_26.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //**********************
- //** ch8_26.cpp **
- //**********************
- #include <iostream.h>
- typedef void (*MenuFun)(); //声明函数指针类型
- void f1(){ cout <<"ngood!n"; }
- void f2(){ cout <<"nbetter!n"; }
- void f3(){ cout <<"nbest!n"; }
- MenuFun fun[]={f1,f2,f3}; //全局函数指针数组
- void main()
- {
- int choice;
- do{
- cout <<"1