double log(double x);
参数 x 是一个双精度浮点数。#include <stdio.h> #include <math.h> int main(){ double a=3, b=40; //为变量赋初值 double c = log(a); //求3的对数 double d = log(b); //求40的对数 printf("%lf\t%lf\n", c, d); return 0; }运行结果:
本文链接:http://task.lmcjl.com/news/18534.html