Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
import std.stdio;
|
||||
|
||||
void main() {
|
||||
writeln("Base: 2 8 10 16");
|
||||
writeln("----------------------------");
|
||||
foreach (i; 0 .. 34)
|
||||
writefln(" %6b %6o %6d %6x", i, i, i, i);
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
for (int i = 0; i < 35; i++)
|
||||
Stdout.formatln ("{:b8} {:o3} {} {:x2}", i, i, i, i);
|
||||
Loading…
Add table
Add a link
Reference in a new issue