1192一行解(Python) 摘要:参考代码:import sysfor line in sys.stdin : print(f"{int(line)}-->{str(bin(int(line)).replace('0b'…… 题解列表 2023年01月11日 0 点赞 0 评论 120 浏览 评分:4.0
编写题解 1192: 十->二进制转换 摘要:解题思路:注意事项:参考代码:while True: try: a=int(input()) if a>=0: print(f"{a}-->{bin(a)[2:]}") …… 题解列表 2022年02月16日 0 点赞 0 评论 355 浏览 评分:5.6