Q:

Ruby program to find the second largest element from the array

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integer elements. Then we will find the second largest element from the array and print it.

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 find the second largest element from the array is given below. The given program is compiled and executed successfully.

# Ruby program to find the second largest element 
# from the array

arr = [12,45,23,39,38];
count = 0;

large1 = 0;
large2 = 0;

large1= arr[0];

while count < arr.size()
    if (large1 < arr[count]) 
        large2 = large1;
        large1 = arr[count];
    elsif( large2 < arr[count] ) 
        large2 =  arr[count];
    end
    count=count + 1;
end

print "Second largest element is: ",large2,"\n";

Output:

Second largest element is: 39

Explanation:

In the above program, we created an array of integer elements. Then we found the second largest element from the array and printed the second largest element.

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 find the EVEN numbers from the arr... >>
<< Ruby program to find the largest element from the ...