-=

Descrição

Essa é uma abreviação conveniente para realizar a subtraçã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. Tipos de dados permitidos: int, float, double, byte, short, long

Código de Exemplo

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

The result on Serial Monitor:

COM6
Send
x = 18
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.

※ OUR MESSAGES