[SW][BEAKJOON]/[SW][BEAKJOON][반복문]
[BEAKJOON][반복문][2739][Python] 구구단
Gooing
2022. 3. 30. 23:55
반응형
PROBLEM
- Link
Approach to the problem
-
Code
# 구구단 만들기
# 입력 : 숫자 (1~9)
# 출력 : 구구단 출력
N = int(input())
for i in range(1,10) :
print(N, "*", i, "=", N*i)
End
-
반응형