#37875: Tle 求救


wayne0922538986@gmail.com (4 14)

學校 : 不指定學校
編號 : 231150
來源 : [112.78.74.180]
最後登入時間 :
2023-10-15 15:52:40
a010. 因數分解 | From: [112.78.74.180] | 發表日期 : 2023-10-15 15:33

x=int(input())
count=0
for i in range (2,x+1):
 while x%i==0:
  x=x/i
  count+=1
 else: 
  if count==1:
   print(i,end=' ')
   count=0
   if x!=1:
    print('*',end=' ')
   continue
  elif count!=1 and count!=0:
   print(str(i)+'^'+str(count),end=' ')
   count=0
   if x!=1:
    print('*',end=' ')
    count=0
   continue
  continue

 
ZeroJudge Forum