这个 很简单int n; double s = 0; printf("Input n\n"); scanf("%d",&n);for(int i=2;i<=n;i++) { s += (i-1)/i; } printf("the result = %f",s);
授人于鱼,不如授之