﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3235	Floor isn't accurate	TommyDDR		"I recently need to count the numbers of digits in a number, so i do my stuff with Log10 and i found a problem :


{{{
Local $log10_1000 = Log(1000)/Log(10)        ; Log(1000)/Log(10) = Log10(1000) = 3
Local $floor_log10_1000 = Floor($log10_1000) ; Floor(3) = 3
Local $int3 = Int(3)                         ; Int(3) = 3
Local $floor_int3 = Floor($int3)             ; Floor(3) = 3
ConsoleWrite($log10_1000 & @CRLF)            ; Display 3
ConsoleWrite($floor_log10_1000 & @CRLF)      ; Display 2 ??
ConsoleWrite($int3 & @CRLF)                  ; Display 3
ConsoleWrite($floor_int3 & @CRLF)            ; Display 3

}}}

Floor(Log(1000)/Log(10)) display 2 instead of 3."	Bug	closed		AutoIt	3.3.14.0	None	No Bug		
