Computer Science, asked by students781005, 4 months ago

Solve the expression A³ multiplied by B³ when A=8
and B =7
Give in computer statement​

Answers

Answered by Oreki
1

Given, A = 8\ and\ B = 7,

    So,

          \texttt{int A = 8, B = 7;}

          \texttt{int result = Math.pow(A, 3) * Math.pow(B, 3);}

                                 \texttt{// Or, A * A * A * B * B * B}

Similar questions