已知变量n,请写出使用for语句计算S=1+1/2+1/3+...+1/n的代码。
已知变量n,请写出使用for语句计算S=1+1/2+1/3+...+1/n的代码。
【正确答案】:S=0.0;
for(int i=1:i<=n;i++)
S+=1.0/i;
Top