#41874: 答案 (python)


Morrischen (morris)

學校 : 高雄市苓雅區復華高級中學國中部
編號 : 236381
來源 : [111.184.105.175]
最後登入時間 :
2024-11-10 20:19:21
a147. Print it all | From: [111.184.105.175] | 發表日期 : 2024-09-05 21:19

#a147. Print it all
a = int(input())
while a!=0:
    for i in range(a-1):
        i +=1
        if i %7!=0:
            print(i,end=" ")
    print()
    a = int(input())

 
ZeroJudge Forum