Computer Science, asked by seeratkumari, 5 months ago

write a java expression for:
√3x + x²/a+b​

Answers

Answered by TriviaTramp
0

Answer:

Hope it helps .

Explanation:

Attachments:
Answered by Oreki
1

\textsf{\large Given Expression}

    \dfrac{\sqrt{3}x + x^{2}}{a + b}

\textsf{\large Java Expression}

    \texttt{(Math.sqrt(3) * x + x * x) / (a + b);}

Similar questions