﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1103	Scientific convertion to integer adding +1. (x>=2^49)	anonymous		"{{{
; Scientific conversion to integer adding +1. (x>=2^49)
; from value 2^49 and up. 
Local $i,$j,$k,$v
$v = 562949953421312 ; int(2^49)
For $i = $v-2 To $v+2
	$j = $i * 1e0
	$k = int($j)
	If ($j=$k) Then
		ConsoleWrite('> ')
	Else
		ConsoleWrite('- ')
	EndIf
	ConsoleWrite($i&', '&$j&', '&($j=$k)&', '&$k&'.'&@CRLF)
Next
;~ > 562949953421310, 562949953421310, True, 562949953421310.
;~ > 562949953421311, 562949953421311, True, 562949953421311.
;~ - 562949953421312, 562949953421312, False, 562949953421313.
;~ - 562949953421313, 562949953421313, False, 562949953421314.
;~ - 562949953421314, 562949953421314, False, 562949953421315.
}}}"	Bug	closed		AutoIt	3.3.1.1	None	No Bug	Scientific notation	
