摘要: #include<stdio.h> #include<math.h> double jiecheng(int x){ if(x==1) return 1; else return x*jiecheng(x-1); } double fun(int n){ double t=0; int i; for 阅读全文
posted @ 2021-11-27 18:58 李岩岩岩岩 阅读(13) 评论(2) 推荐(0) 编辑