Write Corresponding expression of the following------
a) a² +6².
b) 3=x³+y³-xy/2
c) a=0.05-2y³/x-y
(d) (a + b)^n/√3+b
this are some programs in java
please give me the correct answer........
I requesting you all don't give any other answer ........
Answers
Answered by
2
Answer:
a) a×a+ 36
b)3=x×x×x+y×y×y-x×y/2
c)a=0.05-2×1/y^-3/x-y
d)a^n+b^n+2ab/√3+b
BRAINLIAST ANSWER PLZZZ
Answered by
1
Question:-
- Write the corresponding expression for the following in Java.
Solution:-
Question 1.
a²+6² can be written as,
a*a+6*6
Question 2.
x³+y³-xy/2 can be written as,
Math.pow(x,3)+Math.pow(y,3)-(x*y)/2.0
Question 3.
a=0.05-2y³/(x-y) can be written in Java as,
a=0.05-2*Math.pow(y,3)/(x-y)
Question 4.
(a+b)^n/(√3+b) can be written in Java as,
Math.pow(a+b, n)/(Math.sqrt(3)+b)
Similar questions