Computer Science, asked by aqeeqahmed, 4 months ago

write a java expression for the following x^2+xy​

Answers

Answered by anindyaadhikari13
14

Question:-

  • Write the java expression for the following.

Answer:-

Given expression,

 \sf  {x}^{2}  + xy

The java expression for the following is,

Math.pow(x, 2)+x*y;

or,

x*x + x*y;

Similar questions