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 | 31 |
Tags
- EC2
- can't getting credentials
- Error:error:0308010C:digital envelope routines::unsupported
- GeoJSON object too complex/large
- node
- 설치완료안됨
- NODE_VERSION
- Unable to find the global bin directory
- 반응형 페이지 좌표 변환
- netlify variables
- S3
- nodejs
- C언어
- AWS
- AWS CodeBuild
- aws ec2
- AWS CodePipeline
- 이미지 맵
- SASS
- expo
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- 김골라
- 어셈블리어
- rwdImageMaps
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- CSS
- credential error
- react
- ogr2ogr
- 이미지 좌표 추출
Archives
- Today
- Total
목록백준#9498번#시험성적 (1)
ImFe's study

#include 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언어 백준 풀이
2020. 12. 8. 03:19