/= (division composée)
Description
Réalise une opération mathématique entre une variable et une autre variable ou une constante. Les opérateurs /= sont juste utiles pour raccourcir la forme complète de l'opération mathématique, comme listé ci-dessous.
Syntaxe
x /= y; // équivaut à l'expression x = x / y
Paramètres
- x: tout type de variable
- y: tout type de variable ou constante
Exemple
void setup() {
Serial.begin(9600);
int x = 6;
x /= 2; // x contient 3
Serial.print("x = ");
Serial.println(x);
}
void loop() {
}
The result on Serial Monitor:
COM6
x = 3;
Autoscroll
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.
Additionally, some links direct to products from our own brand, DIYables.