摘要: 编写程序,产生两个0~100之间的随机整数a和b,求这两个整数的最大公约数和最小公倍数。 import random //引用随机库 import math //math库 a=random.randint(0,100) b=random.randint(0,100) print(a) print( 阅读全文
posted @ 2020-12-02 16:45 是你们的lotte呀 阅读(79) 评论(0) 推荐(0) 编辑