분류 전체보기102 (파이썬) 백준 알고리즘 2439번 문제풀이 (Python)1234n = int(input()) for b in range(1, n+1): print(' '*(n-b) + '*'*b)cs 문제 출처https://www.acmicpc.net/problem/2439 2018. 12. 2. (파이썬) 백준 알고리즘 2438번 문제풀이 (Python)12345n = int(input()) for i in range(n): print('*'*(i+1)) cs 문제 출처https://www.acmicpc.net/problem/2438 2018. 12. 2. (파이썬) 백준 알고리즘 2739번 문제풀이 (Python)12345n = int(input()) for i in range(9): print(n, '*' ,i+1, '=', n*(i+1)) Colored by Color Scriptercs 문제 출처https://www.acmicpc.net/problem/2739 2018. 12. 2. (파이썬) 백준 알고리즘 2742번 문제풀이 (Python)12345n = int(input()) for i in range(n,0,-1): print(i) cs 문제 출처https://www.acmicpc.net/problem/2742 2018. 12. 2. (파이썬) 백준 알고리즘 2741번 문제풀이 (Python)1234n = int(input()) for i in range(n): print(i+1)cs 문제 출처https://www.acmicpc.net/problem/2741 2018. 12. 2. (파이썬) 백준 알고리즘 2558번 문제풀이 (Python)1234A = int(input())B = int(input()) print(A+B)cs 문제 출처https://www.acmicpc.net/problem/2558 2018. 12. 2. 이전 1 ··· 12 13 14 15 16 17 다음