def decimalToBinary(i):
   b = ''
   while i > 0:
      j = i & 1
      b = str(j) + b
      i >>= 1
   return b

 

Posted by 옥탑방람보
,