Q:

Ruby program to check given item is included in the array or not

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers then we will check given item is included in the array or not.

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 check given item is included in the array or not is given below. The given program is compiled and executed successfully.

# Ruby program to check given item is 
# included in the array or not

arr = [10,20,30,40,50];

if arr.include?(40)
    print "Item 40 is included in the array.\n";
else
    print "Item 40 is not included in the array.\n";
end     

if arr.include?(35)
    print "Item 35 is included in the array.\n";
else
    print "Item 35 is not included in the array.\n";
end

Output:

Item 40 is included in the array.
Item 35 is not included in the array.

Explanation:

In the above program, we created an array arr with some elements. Then we used the select() method. The include?() method is used to check given item is included in the array or not. It returns a Boolean value. Here, we checked item 40, 35 items are included in the array arr or not and printed appropriate message.

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 iterate over each element from the... >>
<< Ruby program to filter array elements using the se...