Computer Science, asked by ak9959611, 1 day ago

a) Write the Java expressions for the following:-
a = 8xy²z+ 2yx + y⁴​

Answers

Answered by itsmerockingaarav
0

Answer:

int x,y,z,a;

int x = (insert any amount you decide);

int y = (insert any amount you decide);

int z = (insert any amount you decide);

a = 8*x*(y*y)*z+2*y*x + (y*y*y*y);

hope it helps MARK ME BRAINLIEST

Similar questions