मराठी

A trigonometrical expression is given as: ABABtanA−tanB1+tanA∗tanB Write a program to calculate the value of the given expression by taking the values of angles A and B (in degrees) as input. - Computer Applications

Advertisements
Advertisements

प्रश्न

A trigonometrical expression is given as: 

`(tan "A" − tan "B")/(1 +tan "A" ∗ tan "B")`

Write a program to calculate the value of the given expression by taking the values of angles A and B (in degrees) as input.

Hint: radian = `(22/(7 ∗ 180))` ∗ degree 

थोडक्यात उत्तर

उत्तर

import java.util.*; 
public class Q5 
{public static void main(String BM[]) 
{Scanner ob = new Scanner(System.in); 
double x, y, z, A = 0, B = 0, C =0, result; 
System.out.println("Enter the values of a, b, c");
A = ob.nextDouble();
B = ob.nextDouble();
C = ob.nextDouble();

//convert A, B, C from degrees to radians
A = (22.0 / (7.0 * 180.0)) * A;
B = (22.0 / (7.0 * 180.0)) * B;
C = (22.0 / (7.0 * 180.0)) * C;
result = (Math. tan(A) − Math.tan(B)) / (1 + Math.tan(A) + Math.tan(B)); 
System.out.println(result); 
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.07: Mathematical Library Methods - EXERCISES [पृष्ठ ८१]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.07 Mathematical Library Methods
EXERCISES | Q VI. 5. | पृष्ठ ८१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×