用递归方法求n阶勒让德多项式的值 递归法将整数转为字符串 用递归方法求n阶勒让德多项式的值,递归公式为?#include “stdio.h”double fun(int n,double x){if(n==0)return 1... 2021-03-16 2018次浏览