티스토리 뷰

Programming/Baekjoon

[for문] 8393. 합

Oziraper 2020. 7. 23. 15:02

* 1부터 N까지의 합을 구하는 문제. 물론 반복문 없이 풀 수도 있습니다.

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

 

Language: C++

#include<iostream>
using namespace std;
int main(){
	int n, result = 0;
	cin >> n;
	for (int i=1; i<=n; i++){
		result += i;
	}
	cout << result;
}

'Programming > Baekjoon' 카테고리의 다른 글

[for문] 2741. N 찍기  (0) 2020.07.23
[for문] 15552. 빠른 A+B  (0) 2020.07.23
[for문] 10950. A+B - 3  (0) 2020.07.23
[for문] 2739. 구구단  (0) 2020.07.14
[if문] 2884. 알람 시계  (0) 2020.07.14
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   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
글 보관함