Q:

Ruby program to find the 1\'s complement of the given number

belongs to collection: Ruby Basic Programs

0

In this program, we will find the 1's complement of a given integer number and print the result.

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 find the 1's complement of the given number is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.

# Ruby program to find the 
# 1's complement of given number

num1 = 2
puts("1's complement of mum1 is: ",~num1)

num2 = 5
puts("1's complement of mum2 is: ",~num2)

Output:

1's complement of mum1 is: 
-3
1's complement of mum2 is: 
-6

Explanation:

In the above program, we created two variables num1num2 that are initialized with 2, 5 respectively. Then we calculated the 1's complement using the "~" 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 demonstrate the Boolean NOT (!) op... >>
<< Ruby program to clear the specific bit using the b...