标题:找错误
取消只看楼主
lpf10101
Rank: 1
等 级:新手上路
威 望:1
帖 子:27
专家分:0
注 册:2006-10-18
 问题点数:0 回复次数:0 
找错误

不知道那错了,就算是不能运行
#include<iostream>
using namespace std;
int add1(int inum)
{return 100+inum;
}
int add2(int inum)
{return 100-inum;
}
int display(int(*fptr)(),int inum)//保证函数指针的参数表和所指向函数的参数表相同
{return (*fptr)(inum);
}
int main()
{int inumbsr;
int (*funptr)();
cout<<"请输入一个正数或负数:";
cin>>inumber;
if(inumber>=0)
{funptr=add1;
}
else
{funptr=add2;
}
cout<<display(funptr,inumber)<<endl;
system("pause");
return 0;
}

搜索更多相关主题的帖子: include display return 参数表 
2006-10-23 20:58



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-98253-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.342490 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved