# 使用遞歸編寫一個十進制轉換二進制的函數(要求采用“取2取余”的方式,結果與調用的bin()一樣返回字符串形式
def Dec2Bin(dec):
result = ''
if dec:
result = Dec2Bin(dec//2)
return result + str(dec%2)
else:
return result
print(Dec2Bin(62))
# 使用遞歸編寫一個十進制轉換二進制的函數(要求采用“取2取余”的方式,結果與調用的bin()一樣返回字符串形式
def Dec2Bin(dec):
result = ''
if dec:
result = Dec2Bin(dec//2)
return result + str(dec%2)
else:
return result
print(Dec2Bin(62))
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。