Q:

Ruby program to demonstrate the arithmetic operators

belongs to collection: Ruby Basic Programs

0

In this program, we will perform arithmetic operations using arithmetic operators 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 demonstrate the arithmetic operators is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.

# Ruby program to demonstrate the 
# arithmetic operators

num1 = 5
num2 = 2

num3 = num1 + num2
puts("Addition: ",num3)

num3 = num1 - num2
puts("Subtraction: ",num3)

num3 = num1 * num2
puts("Multiplication: ",num3)

num3 = num1 / num2
puts("Division: ",num3)

num3 = num1 % num2
puts("Remainder: ",num3)

num3 = num1 ** num2
puts("Exponential: ",num3)

Output:

Addition: 
7
Subtraction: 
3
Multiplication: 
10
Division: 
2
Remainder: 
1
Exponential: 
25

Explanation:

In the above program, we created two variables num1num2 that are initialized with 5, 2 respectively. Then we performed arithmetic operations 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 logical operators... >>
<< Ruby program to demonstrate the exponential operat...