赞
踩
今天做到蓝桥杯练习题库中的一道分解质因数的题,没看答案自己写出了一段分解质因数的代码,代码如下
m=int(input()) n=m i=2 while True: if n%i==0: n=n/i print(i) else: i+=1 if i==m+1: break