반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
11-07 11:40
관리 메뉴

ImJay

[파이썬/Python] 백준 8393번 합 본문

Solved.ac - Python/Bronze V

[파이썬/Python] 백준 8393번 합

ImJay 2022. 10. 7. 14:34
반응형

[파이썬/Python] 백준 8393번 합

www.acmicpc.net/problem/8393

 

8393번: 합

n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.

www.acmicpc.net


문제

n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.

코드

n = int(input())
result = 0

for i in range(n):
    result += i+1

print(result)

풀이

1. n 값을 입력 받고, 합을 받아줄 변수 result 를 초기화 합니다.

n = int(input())
result = 0

 

2. 반복문을 통해 1부터 n까지 값을 더하여 result 에 대입합니다.

for i in range(n):
    result += i+1

 

3. 결과를 출력합니다.

print(result)

 

반응형
Comments