gpt4 book ai didi

c - 使用函数将角度从度数转换为 C 中的弧度

转载 作者:太空宇宙 更新时间:2023-11-04 05:25:59 25 4
gpt4 key购买 nike

作为一个更广泛项目的一部分,我得到了一个以度为单位的角度,需要将其转换为弧度以进行一些计算。

到目前为止,我有以下内容:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

feature1()
{
double angle = 90.0000, angle2;
angle2 = convert_to_rad(angle);
printf("%lf", &angle);
}

double convert_to_rad(double angle_in_deg)
{
double angle_in_rad;
angle_in_rad = (angle_in_deg * M_PI) / 180;
return angle_in_rad;
}

在 NetBeans 中编译文件时出现以下错误:

note: previous implicit declaration of 'convert_to_rad' was here.
error: conflicting types for 'convert_to_rad

最佳答案

为什么不修复格式?

无论如何使用前向声明。

即地点

double convert_to_rad(double angle_in_deg);

开始时(feature1 函数之前)

关于c - 使用函数将角度从度数转换为 C 中的弧度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27475429/

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