Problem Statement - Expression equivalent to math formula
Write the java syntax for the following formula
x= 0.01 – ab^3 / ab
Solution
The java syntax can be written as
x = (0.01 – a*b*b*b)/(a*b)
Common Errors
- Student need to take regarding the brackets and use of multiplication operators in particular
sunmitra| Created: 3-Mar-2018 | Updated: 3-Mar-2018|
Post Views:
532