如何用C语言求10=exp(x);中的X

日期:2021-05-04 11:33:39 人气:1

如何用C语言求10=exp(x);中的X

我查了下c语言的书,log函数
#include <stdio.h>
#include <math.h>
int main()
{
float b;
b=log(10);//ln(x)
printf("%f",b);
return 0;
}
    A+
热门评论