/=

Descrição

Essa é uma abreviação conveniente para realizar a divisão de uma variável com outra variável ou constante.

Sintaxe

x /= y; // equivalente a expressão x = x / y;

Parâmetros

  • x: variável. Tipos de dados permitidos: int, float, double, byte, short, long
  • y: variável ou constante diferente de zero. Tipos de dados permitidos: int, float, double, byte, short, long

Código de Exemplo

void setup() { Serial.begin(9600); int x = 6; x /= 2; // x agora contém 3 Serial.print("x = "); Serial.println(x); } void loop() { }

The result on Serial Monitor:

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