gpt4 book ai didi

c - 返回一个值作为输出参数

转载 作者:太空宇宙 更新时间:2023-11-03 23:41:20 24 4
gpt4 key购买 nike

我有一个 C 语言的问题,我需要将二次方程的系数插入函数并返回解的数量和结果。

Write a program that accepts a series of 3 real numbers, which are the coefficients of a quadratic equation, and the program will print out some solutions to the equation and the solutions themselves. Guidelines:

  • Functions must be worked with one of the functions that returns the number of solutions as a returned value, and returns the solutions themselves through output parameters.
  • 3 numbers must be received each time. The input will be from a file (will end in EOF)

与此同时,我在没有读取文件的情况下构建了函数,只是为了看看它对我有用,我构建了返回解决方案数量的函数,但我纠结于如何将结果作为输出参数返回这是我现在的代码:


int main ()
{

double a, b, c, root1,root2,rootnum;

printf("Enter coefficients a, b and c: ");

scanf("%lf %lf %lf",&a, &b, &c);

rootnum=(rootnumber(a,b,c);

printf("the number of roots for this equation is %d ",rootnum);
}


int rootnumber (double a,double b, double c)
{

formula=b*b - 4*a*c;

if (formula<0)

return 0;

if (formula==0)

return 1;
else
return 2;
}

最佳答案

在 C 中,提供“输出参数”通常相当于提供一个指针参数。该函数取消引用该指针并写入结果。例如;

 int some_func(double x, double *y)
{
*y = 2*x;
return 1;
}

调用者通常必须提供一个地址(例如变量的地址)来接收结果。例如;

 int main()
{
double result;
if (some_func(2.0, &result) == 1)
printf("%lf\n", result);
else
printf("Uh oh!\n");
return 0;
}

我特意提供了一个示例来说明“输出参数”是什么,但与您实际需要编写的代码无关。对于您的问题,您将需要提供两个(即总共五个参数,三个您已经提供的,以及另外两个用于将值返回给调用者的指针)。

由于这是家庭作业,我不会解释您的函数需要通过输出参数返回什么值。毕竟,这是练习的一部分,目的是让您通过练习来学习。

关于c - 返回一个值作为输出参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44305180/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com