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

11 lines
154 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
call Evaluation()
end
2023-07-01 11:58:00 -04:00
subroutine Evaluation()
lo = 1 : hi = 100 : temp = 0
for i = lo to hi
temp += (1/i) ##r(i)
next i
print temp
end subroutine