Q:

Ruby program to iterate hash collection and print only values

belongs to collection: Ruby Hashes Programs

0

In this program, we will create a hash collection then we will iterate elements of a hash collection using each() method and print only values.

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 hash collection and print only values is given below. The given program is compiled and executed on Windows 10 Operating System successfully.

# Ruby program to iterate hash collection 
# and print only values

hash = { "a" => 100, "b" => 200, "c" => 300,"d" => 400};

hash.each{|key,value| puts value};

Output:

100
200
300
400

Explanation:

In the above program, we created a hash collection to store student information. Then we used each() method to iterate hash elements and print only values.

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

total answers (1)

Ruby Hashes Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to demonstrate the Hash.inspect() fun... >>
<< Ruby program to iterate elements of a hash collect...