[정올] Language Coder_반복제어문1_자가진단1_code123 (Python)

두비니

·

2021. 2. 2. 17:51

 

 

힌트는 c언어 기준입니다.

 

 

i=1
while(i<=15):
    print("%d"%i, end=' ')
    i = i+1