Problem
https://codeup.kr/problem.php?id=6066
Solution
1
2
3
4
arr = map(int,input().split())
for i in arr:
print("even" if i % 2 == 0 else "odd")
Memo
입력값을 리스트로 받아서 for문을 통해 하나씩 불러온 후 삼항연산자를 사용하여 출력함.
https://codeup.kr/problem.php?id=6066
1
2
3
4
arr = map(int,input().split())
for i in arr:
print("even" if i % 2 == 0 else "odd")
입력값을 리스트로 받아서 for문을 통해 하나씩 불러온 후 삼항연산자를 사용하여 출력함.
A new version of content is available.