*=

Descrição

Essa é uma abreviação conveniente para realizar a multiplicaçã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 = 2; x *= 3; // x agora contém 6 Serial.print("x = "); Serial.println(x); } void loop() { }

The result on Serial Monitor:

COM6
Send
x = 6
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