gaoxiuhua520 发表于 2022-9-3 20:36:23

十进制

def Dec2Bin(dec):
    result = ''
   
    if dec:
      result = Dec2Bin(dec//2) ( 有没大佬懂这两行写得什么 我都看懂一丢丢)
      return result + str(dec%2) ( 然后这里怎么把余数倒了过来的,我有点没看懂)
    else:
      return result

print(Dec2Bin(62))

Twilight6 发表于 2022-9-3 21:36:30


看看这个帖子:

[已解决] 关于递归问题

https://fishc.com.cn/thread-190816-1-1.html

页: [1]
查看完整版本: 十进制