반응형
1. 2027번 대각선 출력하기 파이썬(Python)
2. 코드
for i in range(5) :
for j in range(5) :
if i == j :
print('#', end='')
else :
print('+', end='')
print()
반응형
'알고리즘 > SW expert Academy' 카테고리의 다른 글
[SW expert Academy] 연산자 - 6204번, 6206번, 6207번, 6209번, 6216번 (3) | 2021.01.04 |
---|---|
[SW expert Academy] 6196번 [파이썬 프로그래밍 기초(1) 파이썬의 기본 구조와 기초 문법] 4. 변수 (0) | 2021.01.04 |
[SW expert Academy] 2043번 서랍의 비밀번호 파이썬(Python) (0) | 2020.07.06 |
[SW expert Academy] 2029번 몫과 나머지 출력하기 파이썬(Python) (0) | 2020.07.06 |
[SW expert Academy] 2025번 N줄 덧셈 파이썬(Python) (0) | 2020.07.05 |
[SW expert Academy] 1938번 아주 간단한 계산기 파이썬(Python) (0) | 2020.07.05 |
[SW expert Academy] 1933번 간단한 N의 약수 파이썬(Python) (0) | 2020.07.04 |
[SW expert Academy] 1936번 1대1 가위바위보 파이썬(Python) (0) | 2020.07.02 |
최근댓글