拿分的好问题
请编写函数,其功能是对传送过来的两个浮点数求出和值与差值,并通过形参传送回调用函数。谢谢!
main()
{
double cha(double,double);
double a,b,c;
c=cha(a,b);
}
double cha(double a,double b)
{
return a-b;
}
乱写的
{
double cha(double,double);
double a,b,c;
c=cha(a,b);
}
double cha(double a,double b)
{
return a-b;
}