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
- netlify variables
- react
- ogr2ogr
- 이미지 맵
- AWS CodeBuild
- C언어
- rwdImageMaps
- NODE_VERSION
- Unable to find the global bin directory
- expo
- AWS CodePipeline
- aws ec2
- S3
- 김골라
- 어셈블리어
- 이미지 좌표 추출
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- EC2
- nodejs
- credential error
- 반응형 페이지 좌표 변환
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- GeoJSON object too complex/large
- node
- AWS
- 설치완료안됨
- can't getting credentials
- Error:error:0308010C:digital envelope routines::unsupported
- CSS
- SASS
Archives
- Today
- Total
ImFe's study
[C] 9498번 - 시험 성적 본문
#include <stdio.h>
int main()
{
int score;
scanf("%d", &score);
if(score>=90)
printf("A");
else if(score>=80)
printf("B");
else if(score>=70)
printf("C");
else if(score>=60)
printf("D");
else
printf("F");
return 0;
}
비교연산자 >=
if랑 else는 단 한번만 사용 할 수있지만, else if는 여러번 사용 가능하다.
else if 앞에 else가 오면 컴파일 에러가 발생한다.
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 14681번 - 사분면 고르기 (0) | 2020.12.09 |
---|---|
[C] 2753번 - 윤년 (0) | 2020.12.09 |
[C] 1330번 - 두 수 비교하기 (0) | 2020.12.08 |
[C] 10430번 - 나머지 (0) | 2020.12.08 |
[C] 2588번 - 곱셈 (0) | 2020.12.08 |
Comments