Q:

Ruby program to iterate over each element from the array

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers then we will iterate over each element from the array using each() method.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to iterate over each element from the array is given below. The given program is compiled and executed successfully.

# Ruby program to iterate over each 
# element from the array

arr = [10,20,30,40,50];

puts "Array elements: ";

arr.each do |item|
  print item," ";
end

Output:

Array elements: 
10 20 30 40 50 

Explanation:

In the above program, we created an array arr with some elements. Then we used each() method. The each() method is used to iterate over each element of the array and print the array elements.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Arrays Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to demonstrate the Array.map() method... >>
<< Ruby program to check given item is included in th...