Q:

Ruby program to demonstrate the range (..) operator

belongs to collection: Ruby Basic Programs

0

In this program, we will create the range of integer and string elements using the range (..) operator. The range (..) operator returns the range of elements including the last term.

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 demonstrate the range (..) operator is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate the 
# range (..) operator

num_range = (5..8).to_a();
str_range = ('CAP'..'CAR').to_a();

puts "#{num_range}";
puts "#{str_range}";

Output:

[5, 6, 7, 8]
["CAP", "CAQ", "CAR"]

Explanation:

In the above program, we created two ranges num_rangestr_range using the range (..) operator and printed the result.

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

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
<< Ruby program to demonstrate the next() function...