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 CodePipeline
- 김골라
- AWS CodeBuild
- react
- nodejs
- Unable to find the global bin directory
- Error:error:0308010C:digital envelope routines::unsupported
- rwdImageMaps
- 이미지 맵
- credential error
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- AWS
- EC2
- S3
- 반응형 페이지 좌표 변환
- GeoJSON object too complex/large
- expo
- NODE_VERSION
- ogr2ogr
- can't getting credentials
- aws ec2
- 설치완료안됨
- SASS
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- node
- 이미지 좌표 추출
- C언어
- CSS
- netlify variables
- 어셈블리어
Archives
- Today
- Total
ImFe's study
[C] 1330번 - 두 수 비교하기 본문
#include <stdio.h>
int main()
{
int a,b=0;
scanf("%d %d", &a, &b);
if(a>b)
printf(">");
if(a<b)
printf("<");
if(a==b)
printf("==");
return 0;
}
실행할 코드가 한 줄이여서 중괄호로 묶지 않아도 괜찮다.
출제 의도는 if, else if, else를 사용하길 원했던듯 하다.
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 2753번 - 윤년 (0) | 2020.12.09 |
---|---|
[C] 9498번 - 시험 성적 (0) | 2020.12.08 |
[C] 10430번 - 나머지 (0) | 2020.12.08 |
[C] 2588번 - 곱셈 (0) | 2020.12.08 |
[C] 10869 - 사칙연산 (0) | 2020.12.08 |
Comments