填空题
下列程序的输出结果是() #include #define MAX_COUNT 4 void fun(); main() { int count; for(count=1 ; count<=MAX_COUNT; count++) fun(); } void fun() { static int i; i+=2; printf("%d",i); }
2468
填空题 根据函数能否被其它源文件调用,函数可分为()函数和()函数。
填空题 静态局部变量的作用域是()
问答题 根据勒让德多项式的定义计算Pn(x)。n和x为任意正整数,把计算Pn(x)定义成递归函数。