1+2/3+4/5+6/7+……200/201
=101-(1/3+1/5+1/7+……+1/201)
程序:(VFP,其他类似)
s=101
for i=3 to 201 step 2
s=s-1/i
endfor
s
程序框图: