C语言有没有内置的求根函数啊
如题。 sqrt 平方根好像 好像有的,在预编译头文件math.h的环境下,sqrt()好像就是求根的,你试一下,我不是很确定。如果对你有帮助的话设置最佳答案哦,谢谢。 C丁洞杀O 发表于 2022-3-25 18:06
好像有的,在预编译头文件math.h的环境下,sqrt()好像就是求根的,你试一下,我不是很确定。
如果对你有 ...
感谢,尝试下,效果理想
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a=9,b;
b = sqrt(a);
printf("%d",b);
system("pause");
return 0;
}
3请按任意键继续. . .
页:
[1]