문제 링크
https://www.acmicpc.net/problem/8393
나의 코드 (Python)
n = int(input())
sum = 0
for i in range(1, n+1):
sum += i
print(sum)
n까지의 합을 받을 변수 n,
1~n까지의 합을 가질 변수 sum을 선언합니다.
for문의 range를 1, n+1까지로 설정하여 1~n까지 i 변수로 갖게 합니다.
sum에 i를 더하고 for문이 끝나면 sum을 출력합니다.
'코딩공부 > 백준 (python)' 카테고리의 다른 글
[백준 2741] N 찍기 (Python) (0) | 2022.02.19 |
---|---|
[백준 15552] 빠른 A+B (Python) (0) | 2022.02.19 |
[백준 10950] A+B - 3 (Python) (0) | 2022.02.19 |
[백준 2739] 구구단 (Python) (0) | 2022.02.19 |
[백준 2480] 주사위 세개 (Python) (0) | 2022.02.14 |
댓글