关于初学者:AC-指针参数传递多个返回值指针参数传递多个返回值基础上机试题

36次阅读

共计 566 个字符,预计需要花费 2 分钟才能阅读完成。

编写函数,其性能是对传送过去的两个浮点数求出和值与差值,并通过形参传回调用函数。
留神:此题用 C 语言实现时,必须应用指针办法解决,只提交头文件和
void compute(float a,float b,float c,float d)
函数,零碎将主动附加上面的 main 函数后运行,请复制上面的 main 函数用于调试函数。
其余语言的答案无此要求。
intmain(){
float a,b,c,d;
scanf(“%f%f”,&a,&b);
compute(a,b,&c,&d);
printf(“%g %g”,c,d);

}
输出
两个浮点数 a,b
输入
a+b a-b 用 %g 输入
样例输出 Copy
1.5 2.5
样例输入 Copy
4 -1

代码示例(本人写的,只能过平台,不完满)

//#include<iostream>
//using namespace std;
//void compute(float a,float b,float *c,float *d);
//
//int main(){
//    float a,b,c,d;
//    scanf("%f %f",&a,&b);
//    compute(a,b,&c,&d);
//    printf("%g %g",c,d);
//}
//void compute(float a,float b,float *c,float *d){//    *c = (a + b);
//    *d = (a - b);
//}

正文完
 0