我写的程序有什么毛病
各位高手,我写的这个程序有什么毛病,请指教:(提干是:求下列不等式的N的最小值 1+1/2+1/3+。。。+1/n>value
│#include "stdio.h" │main() │{ │float sum,value; │int n; │printf("\ninput value:"); │scanf("%f",value); │sum=0.0; │n=0; │do │{ │++n; │sum+=1/(float)n; │}while(sum<=value); │printf("n=%d",n); │}