Java Program to Find Angle Subtended by the Chord to Center of the Circle If the Angle Subtended by Another Equal Chord of a Congruent Circle is Given
import java.io.*;
class Main
{
public static void main(String [] args)
{
double AOB = 90.8;
// formula to find angle made at the center of congruent circle C2
double XZY = AOB;
System.out.println("The angle made at the center of the circle C2 is " + XZY);
}
}
Output:
The angle made at the center of the circle C2 is 90.8
