摘要: ![](https://img2020.cnblogs.com/blog/2554150/202111/2554150-20211104210111787-855237921.png) 阅读全文
posted @ 2021-11-04 21:01 风雾里 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 用python实现伪代码的表述 Yourbase = int(input("Please write your new base here:")) Yournumber = int(input("Please write down your number")) dict1 = {10: 'A', 1 阅读全文
posted @ 2021-11-04 20:26 风雾里 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 伪代码 网址 最大公约数 伪代码 input a, b if a ⇐ b num1 = a, num2 = b else num1 = b, num2 = a if num1 = 0 print (num2) if num2 = 0 print (num1) c = num2 % num1 if c 阅读全文
posted @ 2021-11-04 20:21 风雾里 阅读(16) 评论(0) 推荐(0) 编辑