Home »
Scala »
Scala Programs
Scala program to calculate the IEEE remainder of given numbers using scala.math.IEEEremainder() function
Here, we are going to learn how to calculate the IEEE remainder of given numbers using scala.math.IEEEremainder() function in Scala programming language?
Submitted by Nidhi, on May 05, 2021 [Last updated : March 11, 2023]
scala.math.IEEEremainder() Function Example
Here, we will read a double number from the user and calculate the IEEE remainder of given numbers using scala.math.IEEEremainder() function and print the result on the console screen.
Scala code to calculate the IEEE remainder of given numbers
The source code to calculate the IEEE remainder of given numbers is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to calculate the IEEE remainder
// of given numbers
object Sample{
def main(args:Array[String]){
var num1:Double = 0;
var num2:Double = 0;
var res:Double = 0;
print("Enter number1: ")
num1=scala.io.StdIn.readDouble()
print("Enter number2: ")
num2=scala.io.StdIn.readDouble()
res= scala.math.IEEEremainder(num1,num2)
println("IEEEremainder is: "+res);
}
}
Output
Enter number1: 23.2
Enter number2: 10.0
IEEEremainder is: 3.1999999999999993
Explanation
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created three variables num1, num2, res that are initialized with 0. Then we read the values of num1, num2 variables from the user and then we calculated the IEEE remainder using scala.math.IEEEremainder() function and printed the result on the console screen.
Scala scala.math Package Programs »