Q:

Ruby program to subtract a number without using the minus (-) operator

belongs to collection: Ruby Basic Programs

0

In this program, we will read two integer numbers from the user and then subtract the numbers from another number without using the minus (-) operator.

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 subtract the numbers without using the minus (-) operator is given below. The given program is compiled and executed successfully.

# Ruby program to subtract the numbers 
# without using the '-' operator

subt=0
num1=0
num2=0

print "Enter number1: ";
num1 = gets.chomp.to_i;  

print "Enter number2: ";
num2 = gets.chomp.to_i;  

subt = num1 + (~num2) + 1;

print "Subtraction is: ",subt;

Output:

Enter number1: 8
Enter number2: 3
Subtraction is: 5

Explanation:

In the above program, we created three variables num1num2subt initialized with 0. Then we read values num1 and num2 from the user. After that, we subtracted num2 from num1 without using the minus (-) 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 find the remainder without using t... >>
<< Ruby program to multiply two numbers using the plu...