| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 326 人关注过本帖
标题:关于指针函数,求指点
只看楼主 加入收藏
lioulang
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2012-2-25
结帖率:66.67%
收藏
已结贴  问题点数:20 回复次数:1 
关于指针函数,求指点
求编写一个函数实现dcall(max,a,b)输出最大值的功能。
求指点,很苦恼啊。




程序代码:
# include "stdio.h"
float max(float x,float y)
{
return x>y?x:y;
}
float min(float x,float y)
{
return x<y?x:y;
}

main()
{
float a=1,b=2, c;
float (*p)(float x, float y);
p=max;
c=(*p)(a,b); /*等效于 max(a,b)*/
printf("\nmax=%f",c);
p=min;
c=(*p)(a,b); /*等效于min(a,b)*/
printf("\nmin=%f",c); 
}
搜索更多相关主题的帖子: max 函数 最大值 
2012-03-15 09:02
zaixuexi
Rank: 12Rank: 12Rank: 12
来 自:上海
等 级:火箭侠
威 望:8
帖 子:858
专家分:3233
注 册:2010-12-1
收藏
得分:20 
程序代码:
#include <stdio.h>

#ifdef __cplusplus
#include <typeinfo.h>   
typedef typeid(a).name ctype;
#else
typedef float ctype;
#endif

float max(ctype x, ctype y)
{
    return x > y ? x : y;
}
float min(ctype x, ctype y)
{
    return x < y ? x : y;
}

float dcall(float(*func)(ctype, ctype), ctype x, ctype y)
{
    return (*func)(x, y);
}

int main(int argc, char *argv[])
{
    float a=1, b=2;

    printf("max=%f\n", dcall(max, a, b));
    printf("min=%f\n", dcall(min, a, b));
}

技术问题,请不要以短消息方式提问
2012-03-15 23:59
快速回复:关于指针函数,求指点
数据加载中...
 
   



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

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