Created
January 1, 2018 23:14
-
-
Save ryanckulp/cebfa95d604baca609114bf5ac426189 to your computer and use it in GitHub Desktop.
array of floats for looping in Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ages = [16, 15.6, 16.25, 17.1, 16.4, 15.8] | |
total_years = 0.0 | |
ages.each do |age| | |
total_years += age | |
end | |
total_years / ages.size # => 16.191666666666666 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment