Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- aws ec2
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- ogr2ogr
- AWS CodeBuild
- CSS
- S3
- can't getting credentials
- Unable to find the global bin directory
- node
- AWS CodePipeline
- C언어
- rwdImageMaps
- EC2
- NODE_VERSION
- 이미지 맵
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- SASS
- netlify variables
- GeoJSON object too complex/large
- 반응형 페이지 좌표 변환
- 김골라
- Error:error:0308010C:digital envelope routines::unsupported
- nodejs
- 어셈블리어
- AWS
- 이미지 좌표 추출
- expo
- 설치완료안됨
- react
- credential error
Archives
- Today
- Total
ImFe's study
[C] 8393번 - 합 본문
/*#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d", a*(a+1)/2);
return 0;
} */ //공식을 이용한 풀이
#include <stdio.h>
int main()
{
int a=0;
int sum=0;
scanf("%d", &a);
for (int i = 0; i <= a; i++)
{
sum += i;
}
printf("%d", sum);
return 0;
} //증가하는 i값을 이용한 풀이
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 2742번 - N기찍 (0) | 2020.12.14 |
---|---|
[C] 2741 - N찍기 (0) | 2020.12.14 |
[C] 10950번 - A+B - 3 (0) | 2020.12.14 |
[C] 2739번 - 구구단 (0) | 2020.12.13 |
[C] 2884번 - 알람시계 (0) | 2020.12.13 |
Comments