[백준] #5988 홀수일까 짝수일까 python
2023. 2. 5. 16:16
https://www.acmicpc.net/problem/5988
📕 설명 📕
짝홀을 판별하는 프로그램을 구현한다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
for _ in range(N):
s = int(input())
if s % 2 == 0:
print('even')
else:
print('odd')
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10162 전자레인지 python (0) | 2023.02.07 |
---|---|
[백준] #11557 Yangjojang of The Year python (0) | 2023.02.06 |
[백준] #9506 약수들의 합 python (0) | 2023.02.05 |
[백준] #10102 개표 python (0) | 2023.02.04 |
[백준] #10988 팰린드롬인지 확인하기 python (0) | 2023.02.03 |