gpt4 book ai didi

用C计算圆的面积并在主脚本中调用它

转载 作者:行者123 更新时间:2023-11-30 18:45:15 28 4
gpt4 key购买 nike

我有以下代码,但它给了我一个完全随机的答案。为什么?

#include <stdio.h>
#define PI 3.141

//function prototypes//
double get_h_area(double r);

int main()
{
double r=5.5;
printf("A=%d\n",get_h_area(r)); //prints the answer
return 0 ;
}

double get_h_area(double r)
{
return PI*r*r; //returns the answer
}

但我得到的结果是: -618475291

预期结果是: 95.03

最佳答案

使用这个:

#include <stdio.h>
#define PI 3.141

//function prototypes//
double get_h_area(double r);

int main()
{
double r = 5.5;
printf("A=%lf\n", get_h_area(r)); //prints the answer
return 0;
}
double get_h_area(double r)
{
return PI * r * r; //returns the answer
}

正如@Achal 告诉你的。

关于用C计算圆的面积并在主脚本中调用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55310776/

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