Java Program to Find Angle Subtended by the Chord when the Angle Subtended by another Chord of Same Length is Given
import java.io.*;
class Main
{
public static void main(String [] args)
{
double AOC = 48.24;
// formula to find angle subtended by chord BD at center O
double BOD = AOC;
System.out.println("The subtended angle by the chord BD at center O is " + BOD);
}
}
Output:
The subtended angle by the chord BD at center O is 48.24
