如何编写函数求s=sqrt(ln1+ln2+…+ln(m))
如何编写函数求s=sqrt(ln1+ln2+…+ln(m))
我这人就喜欢百度这点,资料超多#include<stdio.h>
#include<math.h>
main()
{
double sum=0,ave;
int m;
for (m=1;m<=100;m++)
sum+=log( m);
ave=sqrt(sum);
printf("ave=%lf",ave);
}sum没初始化哈哈…资料有点错误,我改了下,还是楼下速度块啊……哈哈
[ 本帖最后由 A13433758072 于 2011-9-11 18:30 编辑 ]