DEV Community

Cover image for Sharpen your Ruby: Part 3
Eric The Coder
Eric The Coder

Posted on • Originally published at eric-the-coder.com

Sharpen your Ruby: Part 3

I develop in Javascript, Python, PHP, and Ruby. By far Ruby is my favorite programming language.

Together let start a journey and revisit our Ruby foundations.

Follow me on Twitter: EricTheCoder_

If you have any questions/comments or you are new and need help, you can comment below or send me a message.

Numbers Type in Ruby

In Ruby the two numbers primary types are Integer and Float.

# Integer
age = 27

# Float
price = 79.99
Enter fullscreen mode Exit fullscreen mode

Attention: In Ruby manipulating integers always end up with an integer

number = 1 / 100 # 0
Enter fullscreen mode Exit fullscreen mode

Why does this division return 0? Because both numbers are integer and Ruby assumed that you would want a rounded value, so it rounded it to the nearest whole number, which is 0 in this case.

Ok but what can I get the right value with a decimal? Yes just use a float in the equation

number = 1.0 / 100 # 0.01
Enter fullscreen mode Exit fullscreen mode

String to number

Sometimes you will have a string that represents numbers and would like to perform a math operation on those.

number = '1'
other_number = '2'
puts number + other_number # 12
Enter fullscreen mode Exit fullscreen mode

This operation will return 12. String is not a number.

To make it work we have to convert string to number using the to_i method

puts number.to_i + other_number.to_i # 3
Enter fullscreen mode Exit fullscreen mode

to_i convert string to an integer. You can also use to_f to convert your string to a float number.

Arithmetic Order of Operations

If we try to run this code what will be the value? In which order the operation will be run?

In Ruby the order of operation is

  • Parentheses
  • Exponent
  • Multiplication
  • Division
  • Addition
  • Subtraction

An old trick to remember this order is to take the first letter of each item that gives the word PEMDAS

Let's do example:

result = 100**2 + 20 - 200 / (7 - 2) + 150 + 2 * 100
# 10330
Enter fullscreen mode Exit fullscreen mode

Here the order of operation to make that result possible

# 1. Parentheses
(7-2) = 5
100**2 + 20 - 200 / 5 + 150 + 2 * 100

# 2. Exponent
100**2 = 10000
10000 + 20 - 200 / 5 + 150 + 2 * 100

# 3. Multiplication
2 * 100 = 200
10000 + 20 - 200 / 5 + 150 + 200

# 4. Division
200 / 5 = 40
10000 + 20 - 40 + 150 + 200

# 5. Final Addition and Subtraction
10000 + 20 - 40 + 150 + 200 = 10330

Enter fullscreen mode Exit fullscreen mode

Numbers methods

Here are some numbers manipulation methods

# Round
number.round 2.68  # 3

# Round down
number.floor 2.68  # 2

# Round up
number.ceil 2.68   # 3

# Next
2.next  # 3

# Is number event?
puts 2.even?  # true

# Is number odd?
puts 2.odd?   # false

# Generate a random number
random_number = rand(1..100)
Enter fullscreen mode Exit fullscreen mode

Exercise

Create a little program that:

  1. Generate a random number between 1.0 and 100. That will generate a float number.

  2. Use the round method to round your random number.

  3. Create an arithmetic operation using all the PEMDAS items and try to figure out the result without looking at Ruby result.

Solution

number1 = rand(1.0..100).round
# 74

# Example only
number2 = 2**4 + 50 * (10 + 20) / 4
# 391
Enter fullscreen mode Exit fullscreen mode

Conclusion

That's it for today. The journey just started, stay tuned for the next post very soon

Follow me on Twitter: EricTheCoder_

Top comments (0)