Ruby Arithmetic Operators
Arithmetic Operators
Arithmetic operators take numerical values as their operands and return a single numerical value. The standard arithmetic operators are addition (+), subtraction (-), multiplication (*), and division (/).
Operator | Name | Example | Result |
---|---|---|---|
+ | Addition | x+y | Sum of x and y. |
- | Subtraction | x-y | Difference of x and y. |
* | Multiplication | x*y | Product of x and y. |
/ | Division | x/y | Quotient of x and y. |
% | Modulus | x%y | Remainder of x divided by y. |
** | Exponent | x**y | x**y will give x to the power y |
Example: Ruby arithmetic operator
Output:
add operator 11 subtract operator 6 multiply operator 30 divide operator 5 raise to a power operator 225 modulo operator 4
More examples on Ruby division operator:
Output:
division in Ruby both operand are integer 17 both operand are integer, truncation 17 at least one operand is float 17.5 both operand are float 17.5
Unary operators:
Output:
2 10 -13 -84
Previous:
Ruby Operators Precedence
Next:
Ruby Comparison Operators
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics