문제
n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.
입력
첫째 줄에 n (1 ≤ n ≤ 10,000)이 주어진다.
출력
1부터 n까지 합을 출력한다.
#include <stdio.h>
int main() {
int n;
int total = 0;
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
total += i;
}
printf("%d", total);
return 0;
}
'c > 백준' 카테고리의 다른 글
25314. 코딩은 체육과목 입니다 (0) | 2023.03.12 |
---|---|
25304. 영수증 (0) | 2023.03.12 |
10950. A+B - 3 (0) | 2023.03.12 |
2739. 구구단 (0) | 2023.03.12 |
2480. 주사위 세개 (0) | 2023.03.12 |