Ruby Array Exercises: Compute the sum of all the elements
Write a Ruby program to compute the sum of all the elements. The array length must be 3 or more.
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:
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?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics