请编写函数fun(),它的功能是计算:s=(1-In(1)-In(2)-In(3)-…-1n(m))2 s作为函数值返回。 在C语言中可调用log(n)函数求In(n)。log函数的引用说明是double log(double x)。 例如,若m的值为15,则fun()函数值为723.570801。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。 试题程序: include <conio.h> include <stdio.h> include <math.h> double fun(int m) { } main() { clrscr(); printf('%f/n',fun(15)); }