Programming Examples
Java program to find sine value of given angle
Write a Java program that takes an angle (in degrees) as input and calculates its sine value using the Math.sin() function.
Solution
import java.util.Scanner;
public class SineCalculation
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.print("Enter an angle in degrees: ");
double degrees = sc.nextDouble();
double radians = Math.toRadians(degrees);
double sineValue = Math.sin(radians);
System.out.println("The sine of " + degrees + " degrees is " + sineValue);
}
}
Output