본문 바로가기
Algorithm

[구현/수학] 백준 15232 Rectangles - 파이썬(Python)

by jangThang 2022. 12. 17.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    15232번: Rectangles

    Read two integer numbers R and C from the standard input and then print R lines with C asterisks (*) each. Example (R=3, C=5): ***** ***** ***** Example (R=2, C=10): ********** **********

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     직사각형의 가로, 세로 길이가 주어집니다. 해당 직사각형의 모양으로 *을 출력합니다.

     

     

     

    3. 코드

    R = int(input())
    C = int(input())
    for i in range(R):
        print('*'*C)

     파이썬은 문자열과 정수를 연산할 수 있습니다. 정수만큼 문자열을 반복하며, 가로의 길이만큼 '*'을 곱해서 쉽게 구현할 수 있습니다.

     

    star가 되고나서 Tistory

    반응형

    댓글