Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
foreach ($n in 0..33) {
|
||||
"Base 2: " + [Convert]::ToString($n, 2)
|
||||
"Base 8: " + [Convert]::ToString($n, 8)
|
||||
"Base 10: " + $n
|
||||
"Base 10: " + [Convert]::ToString($n, 10)
|
||||
"Base 10: " + ("{0:D}" -f $n)
|
||||
"Base 16: " + [Convert]::ToString($n, 16)
|
||||
"Base 16: " + ("{0:X}" -f $n)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue