在C语言中反三角函数的调用

比如求0.5的反余弦值用度数输出60.00°保留两位小数
2024-11-26 02:34:14
推荐回答(1个)
回答1:

#include
#include
void main()
{
printf("%.2f", acos(0.5)*180/3.14);
}