Q:

Ruby program to demonstrate the next() function

belongs to collection: Ruby Basic Programs

0

In this program, we will create 4 integer variables with some initial value. Then we will use the next() function to get the next integer value. The next() function returns the 1 incremented value of the given 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 next() function is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate 
# the next() function

num1 = 10;
num2 = -10;
num3 = 15;
num4 = -15;

print "Num1: ",num1.next(),"\n";
print "Num2: ",num2.next(),"\n";
print "Num3: ",num3.next(),"\n";
print "Num4: ",num4.next(),"\n";

Output:

Num1: 11
Num2: -9
Num3: 16
Num4: -14

Explanation:

In the above program, we created num1num2num3num4 that are initialized with 10, -10, 15, -15. Then we called the next() function to get the number incremented by 1 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 range (..) operato... >>
<< Ruby program to get the GCD and LCM using gcdlcm()...