Non-decimal radices/Input: Difference between revisions

m
Results added, and a declaration.
m (Results added, and a declaration.)
Line 681:
 
=={{header|PL/I}}==
<lang PL/I>declare N fixed binary;
get edit (N) (A(7)); /* decimal input of 7 columns */
put skip list (N);
Line 687:
declare BS bit (32);
get edit (BS) (B(32)); /* Binary input of 32 binary digits. */
put skip edit (BS) (B);</lang>
</langpre>
23
11010101010111111110000000011101
</pre>
 
=={{header|PicoLisp}}==