/=

Beschreibung

Dies ist eine praktische Abkürzung, um die Division einer Variablen mit einer anderen Konstante oder Variablen durchzuführen.

Syntax

x /= y; // Äquivalent zum Ausdruck x = x / y

Parameter

  • x: Variable. Erlaubte Datentypen: int, float, double, byte, short, long.
  • y: nicht null Variable oder Konstante. Erlaubte Datentypen: int, float, double, byte, short, long.

Beispielcode

void setup() { Serial.begin(9600); int x = 6; x /= 2; // x enthält jetzt 3 Serial.print("x = "); Serial.println(x); } void loop() { }

Das ergebnis am seriellen monitor:

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

ARDUINO KAUFEMPFEHLUNG

Arduino UNO R3
Arduino Starter Kit
Bitte Beachten: Dies sind Partnerschaftslinks. Wenn Sie die Komponenten über diese Links Kaufen, können wir eine Provision erhalten, ohne weitere Kosten für Sie. Wir Schätzen es.

※ OUR MESSAGES