1.问题描述 求f(n)=1+1/2+1/3+1/4+…+1/n的值 2.代码 #include<stdio.h> int main () { int n, i; scanf("%d", &n); do