遞歸實現:1 + 1/2 - 1/3 + 1/4 - 1/5.......

/* 遞歸實現: * * 1 + 1/2 - 1/3 + 1/4 - 1/5....... */ #include<stdio.h> #include<stdlib.h> double Recursion(int n) { if(n==1) { return 1; } else if(n%2==0) { return Re
相關文章
相關標籤/搜索