Guest User

Untitled

a guest
Jul 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. deztobin
  2. n:= StrToInt(txtEingabe.Text);
  3. t:= '';
  4. while (n>0) do
  5. begin
  6. t:= IntToStr(n mod 2) + t;
  7. n:= n div 2;
  8. end;
  9. txtAusgabe.Text := t;
Add Comment
Please, Sign In to add comment