Q:

Ruby program to demonstrate the upto() function

belongs to collection: Ruby Basic Programs

0

In this program, we will demonstrate the upto() function. The upto() function returns all the numbers greater than equal to the number till the specified number.

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 upto() function is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate 
# the upto() function

num1 = 5 ;
num2 = -5;

# Prints the number up to 10
num1.upto(10){| i | print i, " "}

print "\n";

# Prints the number up to 1
num2.upto(1){| i | print i, " "}

Output:

5 6 7 8 9 10 
-5 -4 -3 -2 -1 0 1

Explanation:

In the above program, we created two integer variables num1num2 that are initialized with 5, -5 respectively. Then we called upto() function and printed numbers in increasing order till specified number.

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 check the given number is an EVEN ... >>
<< Ruby program to demonstrate the downto() function...