Ruby program to create an array using the new() class method

Ruby Example: Write a program to create an array using the new() class method.
Submitted by Nidhi, on January 08, 2022

Problem Solution:

In this program, we will create an array using the new() class method and print array elements.

Program/Source Code:

The source code to create an array using the new() class method is given below. The given program is compiled and executed successfully.

# Ruby program to create an array using 
# the new() class method

arr = Array.new(5);

arr[0] = 101;
arr[1] = "Rahul";
arr[2] = 15000;

i=0;

while(i<3)
    puts arr[i];
    i = i + 1;
end

Output:

101
Rahul
15000

Explanation:

In the above program, we created an array using the new() class method. Then we accessed elements of an array using an index and printed them.

Ruby Arrays Programs »




Comments and Discussions!

Load comments ↻





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