Q:

Scala program to convert the angle measured radian to a degree using scala.math.toDegrees() function

0

Here, we will read a double number from the user and convert the given radian value into a degree using scala.math.toDegrees() 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 convert the angle measured radian to the degree is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to convert the angle measured 
// radian to degree

object Sample{  
    def main(args:Array[String]){  
        var num:Double = 0;
        var res:Double = 0;
           
        print("Enter radian: ")
        num=scala.io.StdIn.readDouble()
        
        res= scala.math.toDegrees(num)
        println("Angle in degree: "+res);
    }  
}

Output:

Enter radian: 2
Angle in degree: 114.59155902616465

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 numres that are initialized with 0. Then we read the value of the num variable from the user and then we converted the given number measured in radian to a degree using scala.math.toDegrees() 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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now