Q:

Ruby program to find the largest element from the array

0

In this program, we will create an array of integer elements. Then we will find the 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 largest element from the array is given below. The given program is compiled and executed successfully.

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

arr = [12,45,23,33,38];

count = 0;
large = 0;

large=arr[0];

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

print "Largest element is: ",large,"\n";

Output:

Largest element is: 45

Explanation:

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

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now