Dear All,
The below code generates only numbers up to 0.19. Shouldn´t it go to 0.2?
Apart from that, I dont get the long strange decimal numbers it throws without the rounding but thats of minor importance.
The below code generates only numbers up to 0.19. Shouldn´t it go to 0.2?
Apart from that, I dont get the long strange decimal numbers it throws without the rounding but thats of minor importance.
B4X:
Dim i As Double
For i = 0.05 To 0.2 Step 0.01
Log (Round2(i,2))
Next