⌨️ Algorithms/백준 [Python] 백준 2739번_구구단 2022. 6. 28. 17:26 - https://www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net format 이용 N = int(input()) for i in range(1,10): print('{0} * {1} = {2}'.format(N, i, N*i)) 그냥 print N =int(input()) for i in range(1,10): print(N, '*', i, '=', N*i) 공유하기 게시글 관리 MONZHELD '⌨️ Algorithms > 백준' 카테고리의 다른 글 [Python] 백준 8393번_합 (0) 2022.06.28 [Python] 백준 10950번_A+B - 3 (0) 2022.06.28 [Python] 백준 2480번_주사위 세개 (0) 2022.06.28 [Python] 백준 2525번_오븐 시계 (0) 2022.06.27 [Python] 백준 2884번_알람 시계 (0) 2022.06.26 Contents 당신이 좋아할만한 콘텐츠 [Python] 백준 8393번_합 2022.06.28 [Python] 백준 10950번_A+B - 3 2022.06.28 [Python] 백준 2480번_주사위 세개 2022.06.28 [Python] 백준 2525번_오븐 시계 2022.06.27 댓글 0 + 이전 댓글 더보기