'''
반복문
1. while
2. for
a=5
while a>0 :
print(a,'hello')
a=a-1
a=5
while True :
a=a-1
if a == 3:
continue # pass
print(a,'hello')
if a == 0 :
break
'''
# range(5) -> 0이상 5미만 1간격의 수 0 1 2 3 4
# range(2,6) -> 2이상 6미만 1간격의 수 2 3 4 5
# range(2,10,2) -> 2이상 10미만 2간격의 수
# for i in range(5) :
# print(i)
# for i in range(2,6) :
# print(i)
# for i in range(2,10,2) :
# print(i)
# < 문제 풀이 >
# for i in range (1,101) :
# print(i)
# n = int(input())
# for i in range (1,n+1):
# print(i, end=' ')
# a,b = map(int,input().split())
# if a>b:
# for i in range (b,a+1):
# print(i, end=' ')
# else:
# for i in range (a,b+1):
# print(i, end=' ')
# a,b = map(int,input().split())
# for i in range (a, b+1):
# if i%2==1:
# print(i, end=' ')
#
# a = int(input())
# for i in range (1,10) :
# print(a,'*',i,'=',a*i,sep='')
top of page
실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
김나연이 반복문
김나연이 반복문
댓글 3개
좋아요
댓글(3)
bottom of page
boooooooooooo