Computer Science, asked by big427042, 1 month ago

java expression add 1/5xy + 1/2xz​

Answers

Answered by spsk78
0

Explanation:

double c = 1/5.0*x*y+1/2.0*x*z;

System.out .println("c="+c);

Similar questions