/
설명
나눗셈 은 4개 기본 연산 중 하나다. 연산자 / (slash) 는 두 피연산자에 연산하여 결과를 얻는다.
문법
result = numerator / denominator;
매개변수
- result : 변수. 허용되는 자료형: int, float, double, byte, short, long
- numerator : 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
- denominator : 0 아닌 변수 또는 상수. 허용되는 자료형: int, float, double, byte, short, long
예제 코드
int a = 50;
int b = 10;
int c = 0;
c = a / b; // 변수 'c' 는 이 문장 실행후 5가 된다.
※ 주의 및 경고:
- 수(피연산자)중 하나가 float 또는 double이면, 계산에 부동소수점 수학이 사용된다.
- 피연산자가 float / double 자료형이고 결과를 저장하는 변수가 정수이면, 정수 부분만 저장되고 소수 부분은 잃는다.
float a = 55.5;
float b = 6.6;
int c = 0;
c = a / b; // 변수 'c' 는 8을 저장하며, 8.409가 아님
더보기
- 언어 : + (덧셈)
- 언어 : = (할당 연산자)
- 언어 : % (나머지)
- 언어 : * (곱셈)
- 언어 : - (빼기)
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.