#include#includeint main(){ double a=1.0,b,c=0.0; while(a<=20){ b=1/a; c=c+b; a++; } printf("%f",c); system("pause"); return 0;}可能格式不对,思路是这样的