a) Write the Java expressions for the following: a = 8xy'z+ 2yx + y
Answers
Answered by
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/z+2*y*x + y;
hope it helps MARK ME BRAINLIEST
Similar questions