Numbers from 1 to 10 times 13 (x = a * 13) where a can be any number from 1 to 10. In fact this kind of numbers are called integers (like: –9, 4, 9). Do not remember if 0 is an integer but probably yes, and the whole numbers are all number with are not 0 and not minus. Other numbers are called decimals or fractions.
There is a commend : Double in VB but not sure for what yet.
Module Module1
Sub Main()
For index = 1 To 10
Console.WriteLine(index * 13)
Next
Console.ReadLine()
End Sub
End Module
A few new words used in programing:
0 comments:
Post a Comment