* (multiply)MathOperatorsWeb & Application
int e = 50 * 5; // Sets e to 250
int f = e * 5; // Sets f to 1250
Multiplies the values of the two parameters. Multiplication is equivalent to a sequence of addition. For example 5 * 4 is equivalent to 5 + 5 + 5 + 5.
value1 * value2int, float, byte, or charint, float, byte, or char
+ (add)
/ (divide)
1.0OperatorPDE