Computer Science, asked by sayandeep30, 7 months ago

if the java expression of ab+bc+ca=a*b+b*c+c*a, then what is the java expression of (a+b)^4
plz if u know the answers then only write anything . don't write rubbish. i am asking this question for the 20th time so I want a proper answer​

Answers

Answered by BrainlyProgrammer
1

Answer:

Math.pow((a+b),4)

Bro this is third time answering the same question.... :)

Answered by anindyaadhikari13
2

Question:-

  • Write the java expression for the following.

Solution:-

Given expression,

 \sf {(a + b)}^{4}

The java expression will be,

Math.pow(a+b, 4);

Math.pow(x, y) is used to return x raised to the power y.

Similar questions