Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
Dim i As Integer '32-bit signed integer
|
||||
|
|
@ -0,0 +1 @@
|
|||
Dim i As ULong '64-bit unsigned integer
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
i = -18446744073709551615
|
||||
i = 10000000000000000000 + 10000000000000000000
|
||||
i = 9223372036854775807 - 18446744073709551615
|
||||
|
|
@ -0,0 +1 @@
|
|||
i = 4294967296 * 4294967296
|
||||
|
|
@ -0,0 +1 @@
|
|||
i = 4294967296 : i = i * i
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
Dim i As Integer '32-bit signed integer
|
||||
Try
|
||||
i = -2147483647 : i = -(i - 1)
|
||||
Debug.Print(i)
|
||||
Catch ex As Exception
|
||||
Debug.Print("Exception raised : " & ex.Message)
|
||||
End Try
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
i = -(-2147483647 - 1)
|
||||
i = 0 - (-2147483647 - 1)
|
||||
i = -(-2147483647L - 1)
|
||||
i = -(-2147483647 - 2)
|
||||
i = 2147483647 + 1
|
||||
i = 2000000000 + 2000000000
|
||||
i = -2147483647 - 2147483647
|
||||
i = 46341 * 46341
|
||||
i = (-2147483647 - 1) / -1
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
i = -Int(-2147483647 - 1)
|
||||
i = -2147483647: i = -(i - 1)
|
||||
|
|
@ -0,0 +1 @@
|
|||
Dim i As UInteger '32-bit unsigned integer
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
i = -4294967295
|
||||
i = 3000000000 + 3000000000
|
||||
i = 2147483647 - 4294967295
|
||||
i = 65537 * 65537
|
||||
|
|
@ -0,0 +1 @@
|
|||
i = 3000000000 : i = i + i
|
||||
|
|
@ -0,0 +1 @@
|
|||
Dim i As Long '64-bit signed integer
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
i = -(-9223372036854775807 - 1)
|
||||
i = 5000000000000000000 + 5000000000000000000
|
||||
i = -9223372036854775807 - 9223372036854775807
|
||||
i = 3037000500 * 3037000500
|
||||
i = (-9223372036854775807 - 1) / -1
|
||||
|
|
@ -0,0 +1 @@
|
|||
i = -9223372036854775807 : i = -(i - 1)
|
||||
Loading…
Add table
Add a link
Reference in a new issue