Statement Write an interactive version of the InchesToFeet class that accepts the inchesvalue from a user. Save the class as InchesToFeetInteractive.java. Explanation This statement is asking you to create a new version of the “InchesToFeet” class that will be interactive. The interactive version should accept the “inches” value from a user as input, rather than having the value assigned directly ...

Statement Write a class that declares a variable named inches, which holds a length ininches, and assign a value. Display the value in feet and inches; for example, 86inches becomes 7 feet and 2 inches. Be sure to use a named constant whereappropriate. Save the class as InchesToFeet.jav. Explanation This statement is asking you to create a class called “InchesToFeet” ...