C语言编程
计算根下5+根下3除以-5+sin(π/4)的绝对值,其中π=3.1415926 用math.h就行 qiuyouzhi 发表于 2020-3-1 16:30用math.h就行
能不能帮忙打一下,我打了一个,老是错误 你想问什么? #include <stdio.h>
#include <math.h>
int main(void)
{
printf("%lf\n", fabs(sqrt(5) + sqrt(3) / -5 + sin(M_PI / 4)));
return 0;
}
页:
[1]