Beschreibung
Multiplikation ist eine der vier primären Rechenoperationen. Der Operator *
(Sternchen) bearbeitet zwei Operanden, um das Produkt zu erzeugen.
Syntax
product = operand1 * operand2
Parameter
product
: Variable. Erlaubte Datentypen: int
, float
, double
, byte
, short
, long
.
operand1
: Variable oder Konstante. Erlaubte Datentypen: int
, float
, double
, byte
, short
, long
.
operand2
: Variable oder Konstante. Erlaubte Datentypen: int
, float
, double
, byte
, short
, long
.