×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to iterate over each element from the array

Last Updated : December 15, 2025

Problem Solution

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

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.

Ruby Arrays Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.