Created
December 6, 2016 13:25
-
-
Save larshp/dac5de3fcfca7d1155748653deb6dee0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATA: lv_data TYPE string, | |
lv_int TYPE i VALUE 38. | |
WHILE lv_int <> 0. | |
IF lv_int MOD 2 = 0. | |
CONCATENATE '0' lv_data INTO lv_data. | |
ELSE. | |
CONCATENATE '1' lv_data INTO lv_data. | |
ENDIF. | |
lv_int = lv_int DIV 2. | |
ENDWHILE. | |
WRITE: / lv_data. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment