VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-math-sin-method/

⇱ C# | Math.Sin() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Math.Sin() Method

Last Updated : 31 Jan, 2019
Math.Sin() is an inbuilt Math class method which returns the sine of a given double value argument(specified angle). Syntax:
public static double Sin(double num)
Parameter:
num: It is the angle(measured in radian) whose sine is to be returned and the type of this parameter is System.Double.
Return Value: Returns the sine of num of type System.Double. If num is equal to NegativeInfinity, PositiveInfinity, or NaN, then this method returns NaN. Below are the programs to illustrate the Math.Sin() method. Program 1: To show the working of Math.Sin() method.
Output:
0.5
0.707106781186547
0.866025403784439
1
  Program 2: To show the working of Math.Sin() method when the argument is NaN or infinity.
Output:
NaN
NaN
NaN
Comment
Article Tags:

Explore