/=

설명

이것은 한 변수에 다른 상수 또는 변수 나눗셈을 하는 편리한 단축이다.

문법

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
Send
x = 3;
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

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.

※ OUR MESSAGES