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.
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_range, str_range using the range (..) operator and printed the result.
Program/Source Code:
The source code to demonstrate the range (..) operator is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created two ranges num_range, str_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