write a java program to calculate √3x+x² by a+b
Answers
Answered by
0
Answer:
.sqrt3*x + x*x/ a+b;. Related Answer. SE Write the coefficient of x2 of the following expres ) + 7 Q.1. (a) χ2 + 3x (1- 2x. More Related Question & Answers. If x_1and \ x_2 are the solution of the equation ... · या पानाचे भाषांतर
Answered by
2
Answer:
Math.sqrt(3*x+x*x)/(a+b);
Explanation:
Math. sqrt() returns the square root of a value of type double passed to it as argument.
Similar questions