반응형
바로 갑시다.
6071
while 1:
n = int(input())
if n == 0:
break
print(n)
6072
def count_down(n):
if n>0:
print(n)
count_down(n-1)
count_down(int(input()))
6073
def count_down(n):
if n>0:
print(n-1)
count_down(n-1)
count_down(int(input()))
6074
s = ord(input())
t = ord('a')
while t <= s:
print(chr(t),end=' ')
t += 1
6075
n = int(input())
for i in range(n+1):
print(i)
6076
end = int(input())
n=0
while n <= end:
print(n)
n += 1
6077
n = int(input())
s = 0
for i in range(n+1):
if i%2==0:
s += i
print(s)
6078
while 1:
s = input()
if s == 'q':
print('q')
break
else: print(s)
6079
n = int(input())
sum = 0
i = 0
while 1:
sum += i
if sum >= n:
print(i)
break
i += 1
6080
n,m = map(int, input().split())
for i in range(1,n+1):
for j in range(1,m+1):
print(i,j)
6072, 6073번은 코드업에서 예시로 보여주는 것과 다르게 재귀함수로 풀어보았습니다. 저도 잘 사용하지는 못하지만 알아두면 상당히 코드를 짧고 매력적으로 짤 수 있습니다.
이제 10월도 벌써 다 지나가고 날씨도 상당히 쌀쌀해졌습니다. 올해는 엄청 덥더니 춥기도 엄청 추울 모양이에요. 다들 몸관리 잘 하시길 바랍니다.
반응형
'Problem Solving > CodeUp' 카테고리의 다른 글
[CodeUp][Python]코드업 기초100제(끝) 6091~6098 (0) | 2021.11.13 |
---|---|
[CodeUp][Python]기초 100제 6081~6090 (0) | 2021.11.02 |
[CodeUp][Python]코드업 기초 100제 6061~6070 (0) | 2021.10.15 |
[CodeUp][Python]코드업 기초 100제 6051~6060 (0) | 2021.09.25 |