Computer Science

Explain the use of Math.sin() mathematical function

Java Math Lib Methods

3 Likes

Answer

This method returns the trigonometric sine of an angle. Its argument is the angle in radians. It has the following syntax:

double sin(double a)

Answered By

3 Likes


Related Questions