Scala program to get the base 10 logarithm of a Double number using scala.math.log10() function
belongs to collection: Scala scala.math Package Programs
All Answers
total answers (1)
belongs to collection: Scala scala.math Package Programs
total answers (1)
Program/Source Code:
The source code to get the base 10 logarithm value of a Double number is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
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 two variables num, res that are initialized with 0. Then we read the value of the num variable from the user and then we got the base 10 logarithm value using scala.math.log10() function and printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer