Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Ruby Basic Exercises: Print the elements of a given array

Ruby Basic: Exercise-29 with Solution

Write a Ruby program to print the elements of a given array.

Ruby Basic Exercises: Print the elements of a given array

Sample array : ["Ruby", 2.3, Time.now]

Ruby Code:

array1 = ["Ruby", 2.3, Time.now]
for array_element in array1
          puts array_element
end

Output:

Ruby
2.3
2017-12-28 06:01:53 +0000

Flowchart:

Flowchart: Print the elements of a given array

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to print odd numbers from 10 to 1.
Next: Write a Ruby program to check two non-negative integer values and return true if they have the same last digit.

What is the difficulty level of this exercise?