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
- EC2
- 설치완료안됨
- GeoJSON object too complex/large
- NODE_VERSION
- can't getting credentials
- ogr2ogr
- expo
- 이미지 맵
- nodejs
- 이미지 좌표 추출
- 어셈블리어
- AWS CodeBuild
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- S3
- react
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- C언어
- Error:error:0308010C:digital envelope routines::unsupported
- node
- AWS
- netlify variables
- Unable to find the global bin directory
- AWS CodePipeline
- 반응형 페이지 좌표 변환
- SASS
- credential error
- CSS
- 김골라
- aws ec2
- rwdImageMaps
Archives
- Today
- Total
ImFe's study
[C] 10869 - 사칙연산 본문
-문제
두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a+b);
printf("%d\n", a-b);
printf("%d\n", a*b);
printf("%d\n", a/b);
printf("%d\n", a%b);
return 0;
}
시키는 대로 잘 따라하자
scanf에서 한 번에 정수 두 개를 입력받을 수 있다.
'Programming > C언어 백준 풀이' 카테고리의 다른 글
[C] 10430번 - 나머지 (0) | 2020.12.08 |
---|---|
[C] 2588번 - 곱셈 (0) | 2020.12.08 |
[C] 1008번 - A/B (0) | 2020.12.07 |
[C] 10998번 - AxB (0) | 2020.12.07 |
[C] 1001번 - A-B (0) | 2020.12.07 |
Comments