/=
설명
이것은 한 변수에 다른 상수 또는 변수 나눗셈을 하는 편리한 단축이다.
문법
x /= y; // x = x / y; 와 같다
매개변수
- x: 변수. 허용되는 자료 형: int, float, double, byte, short, long
- y: 0 아닌 변수 또는 상수. 허용되는 자료 형: int, float, double, byte, short, long
예제 코드
void setup() {
Serial.begin(9600);
int x = 6;
x /= 2; // x 는 3
Serial.print("x = ");
Serial.println(x);
}
void loop() {
}
시리얼 모니터에 결과:
COM6
x = 3;
Autoscroll
Clear output
9600 baud
Newline
더보기
- 언어 : += (복합 덧셈)
- 언어 : &= (복합 비트 AND)
- 언어 : |= (복합 비트 OR)
- 언어 : ^= (복합 비트 XOR)
- 언어 : *= (복합 곱셈)
- 언어 : -= (복합 뺄셈)
- 언어 : -- (감소)
- 언어 : ++ (증가)
- 언어 : Normal Division
※ 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.