Solved thank you
Printable View
Solved thank you
The only thing I can say without giving you code is: call the method with your parameters, hight in inches. Also it is a static function, so you don't have to create an object to call it.
I don't mean don't give me the code. Just include a brief explanation with it if possible
ClassName.convertInchesToFeet(height);
this is the class name. the method is static so you don't have to make an object
the period is used to call a method
then next part is the method name
whatever is in the parenthesis are the method parameters
you need a semi-colon to call a method.