Computer Science, asked by lathashreegtch, 7 months ago

Write an expression in Java for 5x3+ 7xy + y

Answers

Answered by alizaeli337
0

Write an expression in Java for 5x3+ 7xy + y

google up and see

Answered by anindyaadhikari13
2

Answer:-

Given expression,

 \sf 5 {x}^{3}  + 7xy + y

The java expression will be,

5*Math.pow(x,3)+7*x*y+y

Similar questions