1150计算t=1+1/2+1/3+...+1/n(全用double即可)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double s=0; double t; cin >> t; for……
1150: C语言训练-计算t=1+1/2+1/3+...+1/n
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a; double sum = 0; scanf("%d",&a); ……
递归自然最好用-计算t=1+1/2+1/3+...+1/n
摘要:解题思路:递归注意事项:参考代码:#include<stdio.h>double h(int i){ if(i==1) { return 1.0; } else ……