Note
[codeup] 90. 3 6 9 게임의 왕이 되자 본문
728x90
n = int(input())
for i in range(1, n+1) :
if i%10 == 3 or i%10 == 6 or i%10 == 9:
print("X", end=" ")
else:
print(i, end=" ")
'etc > Coding Test' 카테고리의 다른 글
[codeup] 92. 소리 파일 저장용량 계산하기 (0) | 2021.12.22 |
---|---|
[codeup] 91. 빛 섞어 색 만들기 (0) | 2021.12.21 |
[codeup] 89. 16진수 구구단 출력하기 (0) | 2021.12.19 |
[codeup] 88. 주사위 2개 던지기 (0) | 2021.12.18 |
[codeup] 87. 짝수 합 구하기 (0) | 2021.12.17 |
Comments