用add函数求两个参数的和,并且和值返回调用函数。这个程序怎么写?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用add函数求两个参数的和,并且和值返回调用函数。这个程序怎么写?相关的知识,希望对你有一定的参考价值。
#include <stdio.h>#define type int
type add(type a, type b)
type ret;
ret=a+b;
return ret;
int main()
type a,b;
scanf("%d%d", &a,&b);
printf("%d\\n", add(a,b));
return 0;
参考技术A #include<stdio.h>
float Add(float x,float y)//函数定义
float s;
s=x+y;
return(s);
int main()
float x,y,sum;
char c;
while(c!='\\')//继续输入下一组数据,直到输入\键结束循环
printf("please input two number:\n");
scanf("%f%f",&x,&y);
printf("the result is:");
sum=Add(x,y);//调用函数,因为add函数在main函数之前定义了,所以main函数中无需再声明,而直接调用add
printf("%f\n\n",sum);
c=getchar();//
printf("The end\n");
getchar();//按回车键退出
本回答被提问者采纳 参考技术B # include <stdio.h>
void mian()
int a = 0, b = 0, sum = 0;
add();
printf("%d\n",sum);
void add()
int x = 0, y = 0, z = 0;
z = x + y;
return 0;
你试试看,应该对
C语言:编写一个函数,在数函数中调用它时,每次实现不同的功能
编写一个函数,在数函数中调用它时,每次实现不同的功能,第一次调用求两个数之和,第二次调用求两个数之差,第三次调用求两个数之积。
要求
(1) 在主函数中输入2个数a,b,并输出a,b的和、差、积。
(2) 分别编写函数add(),sub(),mul()计算两个数的和、差、积。
(3) 用指向函数的指针作为参数,编写函数process(),实现对add(),sub(),mul()的调用
int add(int a, int b)
return a+b;
int sub(int a, int b)
return a-b;
int mul(int a,int b)
return a*b;
int process(int (*fun)(int,int), int a, int b)
return fun(a,b);
int main()
int a,b,r;
printf("输入a、b两数:\\n");
scanf("%d%d",&a,&b);
printf("两数之和:%d\\n", process(add,a,b));
printf("两数之差:%d\\n", process(sub,a,b));
printf("两数之积:%d\\n", process(mul,a,b));
追问
对了
参考技术A 思路:函数指针数组可以实现这个,ptr++跳到下一个函数去执行了。你自己去实现下试试,不行再来问问 参考技术B #include<stdio.h>int add(int m,int n)
return m+n;
int sub(int m,int n)
return m-n;
int mul(int m,int n)
return m*n;
int process(int(*p)(int ,int),int m,int n)
return p(m,n);
main()
int m,n;
scanf("%d%d",&m,&n);
printf("%d\n",process(add,m,n));
printf("%d\n",process(sub,m,n));
printf("%d\n",process(mul,m,n));
return 0;
希望能帮到你,哪里不清楚再问。
我的运行没错,复制到记事本中先,望采纳! 参考技术C 第三条啊。。。干嘛非要用指针啊啊啊啊啊啊啊
以上是关于用add函数求两个参数的和,并且和值返回调用函数。这个程序怎么写?的主要内容,如果未能解决你的问题,请参考以下文章
数据库,创建函数,求1+2+3+......+n的和,并返回和值