RosettaCodeData/Task/Jensens-Device/Yabasic/jensens-device.basic

10 lines
155 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
sub Evaluation()
lo = 1 : hi = 100 : temp = 0
for i = lo to hi
temp = temp + (1/i) //r(i)
next i
print temp
end sub
Evaluation()