w3resource

Ruby Array Exercises: Compute the sum of all the elements

Ruby Array: Exercise-9 with Solution

Write a Ruby program to compute the sum of all the elements. The array length must be 3 or more.

Ruby Array Exercises: Compute the sum of all the elements

Ruby Code:

def check_array(nums)
   return (nums[0] + nums[1] + nums[2])
end

print check_array([1, 2, 5]),"\n" 
print check_array([1, 2, 3]),"\n" 
print check_array([1, 2, 4]) 

Output:

8
6
7

Flowchart:

Flowchart: Compute the sum of all the elements

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to remove blank elements from an given array.
Next: Write a Ruby program to split a delimited string into an array.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.