Module Tester Sub Main() Dim Values() As Integer = {100, 200, 300, 400, 500} Dim MyValues(5) As Integer Dim Prices() As Double = {25.5, 4.95, 33.4} Dim I As Integer For I = 0 To 4 Console.Write(Values(I) & " ") Next Console.WriteLine() For I = 0 To Prices.GetUpperBound(0) Console.Write(Prices(I) & " ") Next End Sub End Module
100 200 300 400 500 25.5 4.95 33.4
2.9.Double | ||||
2.9.1. | Declare Double type variable and assign value | |||
2.9.2. | Define double and output its value | |||
2.9.3. | Get Epsilon from Double | |||
2.9.4. | Show difference precision of Single and Double (1) | |||
2.9.5. | Single Double MaxValue and Memory Size (1) | |||
2.9.6. | Parse double value | |||
2.9.7. | Define and loop through double value array | |||
2.9.8. | Read Double value from Keyboard | |||
2.9.9. | Convert Double to Integer | |||
2.9.10. | Parse Double | |||
2.9.11. | Double.IsNaN() | |||
2.9.12. | Double.IsPositiveInfinity() | |||
2.9.13. | Double.IsNegativeInfinity() | |||
2.9.14. | Catch OverflowException |