Q:

Scala program to calculate the power of a number

belongs to collection: Scala Basic Programs

0

Here, we will read an integer number and its power from the user and calculate the power of the number using scala.math.pow() function and print the result on the console screen.

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 calculate the power of a number is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to calculate the 
// power of a number

object Sample{  
    def main(args:Array[String]){  
        var num:Int    = 0;
        var p:Int      = 0;
        var res:Double = 0;
        
        print("Enter number: ")
        num=scala.io.StdIn.readInt()
        
        print("Enter power: ")
        p=scala.io.StdIn.readInt()
        
        res = scala.math.pow(num,p)
        println("Result: "+res);
    }  
}

Output:

Enter number: 5
Enter power: 3
Result: 125.0

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 numpres that are initialized with 0. Then we read the value of the num and p variable from the user and then we calculated the power of a number using scala.math.pow() function. Here, scala.math is a package that contains the definition of pow() function.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Scala Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Scala program to multiply two numbers using the pl... >>
<< Scala program to find the square root of a number...