Programa para calcular el ángulo sobre la circunferencia subtendido por la cuerda cuando se da el ángulo central subtendido por la cuerda

Dado un círculo que tiene una cuerda y un ángulo subtendido por una cuerda en el centro del círculo. La tarea aquí es encontrar la medida del ángulo subtendido por cuerda dada en la circunferencia.
 

Ejemplos: 
 

Input: \( \theta \) = 90Output: ABC = 45.00 degreesInput: \( \theta \) = 65Output: ABC = 32.50 degrees

Acercarse:
 

  • Sea AC una cuerda de un círculo con centro en O y sea C cualquier punto de la circunferencia en cualquier lugar.
  • Sea el ángulo AOC (en el centro) el dado    .
  • Entonces el ángulo debe estar en la circunferencia, 
    ángulo ABC = ángulo AOC/2

Un ángulo en la circunferencia de un círculo es la mitad del ángulo en el centro subtendido por la misma cuerda.

A continuación se muestra la implementación del enfoque anterior:
 

C++

// C++ Program to calculate angle
// on the circumference subtended
// by the chord when the central angle
// subtended by the chord is given
#include <iostream>
using namespace std;
 
float angleOncirCumference(float z)
{
    return (z / 2);
}
 
// Driver code
int main()
{
 
    // Angle on center
    float angle = 65;
 
    float z = angleOncirCumference(angle);
 
    cout << "The angle is " << (z) << " degrees";
 
    return 0;
}
 
// This code is contributed by jit_t

Java

// Java Program to calculate angle on the circumference
// subtended by the chord when the central angle
// subtended by the chord is given
 
class GFG {
 
    static float angleOncirCumference(float z)
    {
        return (z / 2);
    }
 
    // Driver code
    public static void main(String[] args)
    {
 
        // Angle on center
        float angle = 65;
 
        float z = angleOncirCumference(angle);
 
        System.out.println("The angle is "
                           + z + " degrees");
    }
}

Python3

# Python3 Program to calculate angle
# on the circumference subtended
# by the chord when the central angle
# subtended by the chord is given
def angleOncirCumference(z):
 
    return (z / 2);
 
# Driver code
 
# Angle on center
angle = 65;
 
z = angleOncirCumference(angle);
 
print("The angle is", (z), "degrees");
 
# This code is contributed by Rajput-Ji

C#

// C# Program to calculate angle on the circumference
// subtended by the chord when the central angle
// subtended by the chord is given
using System;
     
public class GFG
{
 
    static float angleOncirCumference(float z)
    {
        return (z / 2);
    }
 
    // Driver code
    public static void Main(String[] args)
    {
 
        // Angle on center
        float angle = 65;
 
        float z = angleOncirCumference(angle);
 
        Console.WriteLine("The angle is "
                        + z + " degrees");
    }
}
 
// This code is contributed by Rajput-Ji

Javascript

<script>
 
// JavaScript Program to calculate angle
// on the circumference subtended
// by the chord when the central angle
// subtended by the chord is given
 
function angleOncirCumference(z)
{
    return (z / 2);
}
 
// Driver code
 
    // Angle on center
    let angle = 65;
 
    let z = angleOncirCumference(angle);
 
    document.write("The angle is " + (z) + " degrees");
 
// This code is contributed by Surbhi Tyagi.
 
</script>
Producción: 

The angle is 32.5 degrees

 

Complejidad de tiempo: O(1)

Espacio Auxiliar: O(1)

Publicación traducida automáticamente

Artículo escrito por 29AjayKumar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *