Design JavaFX application with 7 labels and one textfield where
user enters input inches. When user enters his choice
and presses enter key to complete input, program outputs resulting
yards, feet, and inches.
Use class P5 that extends Application with start
method in it, and class P5Pane that extend GridPane. The only
inctance variables for P5Pane class are inputInches where user
enters input inches, and three labels: outYards,
outFeet, and outInches where program displays result of
conversion. Use the following names for instance
variables:...