Final answer:
To create an app that calculates miles per gallon, follow these steps: Get input from the user, handle exceptions, calculate the result, and display it to the user.
Step-by-step explanation:
To create an app that calculates miles per gallon, you need to follow these steps:
- Get the input for miles driven and gallons used from the user.
- Use exception handling to process FormatExceptions that occur when converting the input strings to doubles.
- If an invalid input is entered, display a message informing the user.
- Calculate the miles per gallon by dividing the miles driven by the gallons used.
- Display the result to the user.