这道题不会,哪位大神帮我看看
函数指针的应用:sin(x)、cos(x)、tan(x)都是三角函数,形参、函数返回结果都是double类型,它们的声明、定义已包含在math.h中。请编写编程实现如下功能:根据输入的整数(1、2、3)分别调用sin(x)、cos(x)、tan(x),x的值也需要输入,请补充程序所缺代码:#include <stdio.h>
#include <math.h>
int main()
{
int n;
double x;
printf("请输入整数1,2,3(分别调用sin(x)、cos(x)、tan(x)):");
scanf("%d",&n);
printf("请输入x的值:");
scanf("%lf",&x);
(1) //定义指向函数的指针变量;
void fun(double (*p)(double z),double x, int n) ;//函数声明
(2) //调用fun()函数
return 0;
}
//函数功能: 根据n的值(1,2,3)分别调用sin(x)、cos(x)、tan(x),并输出结果;n为其它值时,提示“输入的数据有误,不能调用任何函数!”
void fun(double (*p)(double z),double x, int n)
{
//函数的实现代码
}
代码好象有问题,fun() 函数参数是函数指针,x,n (这里参数有函数指针,表示在外面已经选好函数 sin 或 cos 或 tan 了,为什么还要用 n?) #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <math.h>
int main()
{
int n;
double x;
void fun(double (*p)(double z), double x);
printf("请输入整数1,2,3(分别调用sin(x)、cos(x)、tan(x)):");
if(scanf("%d", &n))
;
printf("请输入x的值:");
if(scanf("%lf", &x))
;
switch (n)
{
case 1:
fun(sin, x);
break;
case 2:
fun(cos, x);
break;
case 3:
fun(tan, x);
break;
default:
printf("输入的数据有误,不能调用任何函数!");
break;
}
return 0;
}
void fun(double (*p)(double z), double x)
{
printf("%lf", p(x));
} 傻眼貓咪 发表于 2022-3-10 23:55
代码好象有问题,fun() 函数参数是函数指针,x,n (这里参数有函数指针,表示在外面已经选好函数 sin 或 c ...
我就是觉得奇怪才发出来的,老师布置的{:10_266:}
页:
[1]