Computer Science, asked by satarupamumpy, 7 months ago

Convert the following into java expression:
a. ax²+bx+c
b. T=a²+l/g
c. S=ut+½at²
d. V²- u² + 2as
e. (a+b)³
f. 4/3 hr³ + 5/2 a²

​Please tell this answer.. please..

Answers

Answered by niteshkuriyal68
0

Answer:

(a).a*x*x+b*x+c;

(b).T=a*a+l/g;

(c).S=u*t+1/2*a*t*t;

(d).V*V-u*u+2*a*s;

(e).math.pow((a+b),3);

(f).4/3*h*r*r*r+5/2*a*a;

Hope it Helps You

Similar questions