Difference between revisions of "Binary Numbers"
From GiderosMobile
(Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2017.10<br/> === Description === <br /> Binary number representation.<br /><br /> <b>0b</b>BinaryPat...") |
|||
(14 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' <br/> | + | <!-- GIDEROSOBJ:Binary Numbers --> |
+ | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/> | ||
'''Available since:''' Gideros 2017.10<br/> | '''Available since:''' Gideros 2017.10<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Binary number representation. | |
− | Binary number representation.< | + | |
+ | <b>0b</b>BinaryPattern, enter a number in binary format | ||
+ | |||
+ | === Examples === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | a=0b00000001 -- a = 1 | ||
+ | print(a) | ||
+ | a=0b00000010 -- a = 2 | ||
+ | print(a) | ||
+ | a=0b00000011 -- a = 3 | ||
+ | print(a) | ||
+ | a=0b00000100 -- a = 4 | ||
+ | print(a) | ||
+ | a=0b00000101 -- a = 5 | ||
+ | print(a) | ||
+ | a=0b00000110 -- a = 6 | ||
+ | print(a) | ||
+ | a=0b00000111 -- a = 7 | ||
+ | print(a) | ||
+ | a=0b00001000 -- a = 8 | ||
+ | print(a) | ||
+ | a=0b00001001 -- a = 9 | ||
+ | print(a) | ||
+ | </syntaxhighlight> | ||
− | + | {{GIDEROS IMPORTANT LINKS}} | |
− | { | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 02:56, 1 December 2023
Supported platforms:
Available since: Gideros 2017.10
Description
Binary number representation.
0bBinaryPattern, enter a number in binary format
Examples
a=0b00000001 -- a = 1
print(a)
a=0b00000010 -- a = 2
print(a)
a=0b00000011 -- a = 3
print(a)
a=0b00000100 -- a = 4
print(a)
a=0b00000101 -- a = 5
print(a)
a=0b00000110 -- a = 6
print(a)
a=0b00000111 -- a = 7
print(a)
a=0b00001000 -- a = 8
print(a)
a=0b00001001 -- a = 9
print(a)