バイナリしゅつりょく
2576 ワード
作成日:2022年1月29日午後6:18
インプリメンテーションコード
# 이진수 출력(재귀)
import sys
#sys.stdin = open("input.txt", "rt")
n = int(input())
res = []
def convertToBinary(n, res):
if n > 1:
remainder = n % 2
n = n // 2
convertToBinary(n, res) # 재귀
res.append(remainder)
return res
else:
res.append(n)
return
res = convertToBinary(n, res)
for x in res:
print(x, end='')
Reference
この問題について(バイナリしゅつりょく), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/이진수-출력-재귀テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol