Q:

Ruby program to get the predecessor of an integer number using library function

belongs to collection: Ruby Basic Programs

0

In this program, we will create two variables and initialize them with some values. Then we will get the predecessor of a given number using the pred() library function.

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 get the predecessor of an integer number using the library function is given below. The given program is compiled and executed successfully.

# Ruby program to get the predecessor of an 
# integer number using library function

num1 = 20;
num2 = -23

print "Predecessor of num1: ",num1.pred(),"\n";
print "Predecessor of num2: ",num2.pred(),"\n";

Output:

Predecessor of num1: 19
Predecessor of num2: -24

Explanation:

In the above program, we created two variables num1num2 and initialized 20, -23 respectively. Then we got the predecessor of the given integer number using the pred() library function 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 get the successor of an integer nu... >>
<< Ruby program to check the given number is an odd n...