Advertisements
Advertisements
Question
Write the Java expression for the following:
`3/4 (a + b) - 2/5 ab`
One Line Answer
Solution
((3 / 4) * (a + b)) - ((2 / 5) * (a * b))
shaalaa.com
Is there an error in this question or solution?
Write the Java expression for the following:
`3/4 (a + b) - 2/5 ab`
((3 / 4) * (a + b)) - ((2 / 5) * (a * b))