摘要: 第一题: #include <stdio.h> #include <math.h> double T(int n,double x){ if(n==0) return 1; else if(n==1) return x; else return 2*x*T(n-1,x)-T(n-2,x); } in 阅读全文
posted @ 2020-10-08 00:04 薄眠抛却陈年事。 阅读(266) 评论(0) 推荐(0) 编辑