用add函数求两个参数的和,并且和值返回调用函数。这个程序怎么写?

2022-11-01 11:58发布

#include#definetypeinttypeadd(typea,typeb){typeret;ret=a+b;returnret;}i

#include#definetypeinttypeadd(typea,typeb){typeret;ret=a+b;returnret;}i
2条回答
2022-11-01 12:33
#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;
}

#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();//按回车键退出
}本回答被提问者采纳