KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

a=(0.052y3)xya = \dfrac{(0.05 - 2y^3)}{x - y}

Java Operators

ICSE 2007

11 Likes

Answer


a = (0.05 - 2 * y * y * y) / (x - y)

Answered By

7 Likes


Related Questions