ch8_26.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch8_26.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. typedef void (*MenuFun)();    //声明函数指针类型
  6. void f1(){ cout <<"ngood!n"; }
  7. void f2(){ cout <<"nbetter!n"; }
  8. void f3(){ cout <<"nbest!n"; }
  9. MenuFun fun[]={f1,f2,f3};    //全局函数指针数组
  10. void main()
  11. {
  12.   int choice;
  13.   do{
  14.     cout <<"1