제목 : 3.1. 예제. 산술 연산자 : 산술연산자.c
글번호:
|
|
39
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/08/01 오후 11:57:09
|
조회수:
|
|
4938
|
/*
산술연산자(Arithmetic Operator) : +, -, *, /, %(Mod;나머지)
*/
#include <stdio.h> // 전처리기 지시문(PreProcessor Directive)
void main(void) // main 함수(메서드) : Entry Point(진입점)
{
//[1] Input(입력)
int a = 10;
int b = 3;
int r = 0;
//[2] Process(처리)
r = a + b;
//[3] Output(출력)
printf("%d + %d = %2d\n", a, b, r);
printf("%d - %d = %2d\n", a, b, (a - b));
printf("%d * %d = %2d\n", a, b, (a * b));
printf("%d / %d = %2d\n", a, b, (a / b));
printf("%d %% %d = %2d\n", a, b, (a % b)); // a / b = 몫(3), 나머지(%;1)
}