cafemug   7년 전

def mul(a):
    x=1
    xlist=[]
    count=0
    sum1=0
    alist=[]
    while x<a:
        if a%x==0:
            xlist.append(x)
            x+=1
            count+=1
        else:
            x+=1
    xlist.sort()
    for i in range(count):
        sum1+=xlist[i]
    if sum1==a:
        alist=xlist
    else:
        alist=0
    return alist

while True :
    a=int(input())
    if a==-1:
        break
    alist=mul(a)
  
    if alist!=0:
        x=len(alist)
        print("%d =  " %a,end="")
        for i in range(x-1):
            print("%d + "%alist[i],end="") 
        print(alist[x-1])
    else:
        print("%d is NOT perfect."%a)
    
        

맨첨엔 str로 했어서 int가 아니라 그런지 알고 저렇게 했는데


계속 출력형식이 잘못출력되었다고해서요


고수님들 알려주세요 ㅠㅠ

onjo0127   7년 전

print("%d =  " %a,end="")

여기서 공백이 두 개 들어가있어요

cafemug   7년 전

@onjo0127

감사합니다!!

댓글을 작성하려면 로그인해야 합니다.