ex82.pp 173 B

123456789101112
  1. Program example82;
  2. { Program to demonstrate the BinStr function }
  3. Const Value = 45678;
  4. Var I : longint;
  5. begin
  6. For I:=8 to 20 do
  7. Writeln (BinStr(Value,I):20);
  8. end.