0 回帖
"[链接]问题 编写一段代码,将一个正整数 N 用二进制表示并转换为一个字符串 s。 [链接]答案 def BinaryString(N): s = '' while N > 0: s = str(N % 2) + s N = N // ...."