This project is a simple Java application that calculates your Body Mass Index (BMI) and determines your weight class based on your height and weight.
- Calculates BMI using the standard formula
- Categorizes weight class as:
- Underweight: BMI < 18.5
- Normal: 18.5 ≤ BMI < 25
- Overweight: 25 ≤ BMI < 30
- Obese: BMI ≥ 30
- Opens a browser link to a unit conversion tool for additional assistance.
- Run the program: Use your favorite Java IDE or the command line to execute the
Main
class. - Input your details:
- Enter your height in inches.
- Enter your weight in pounds.
- Get your results:
- Your BMI will be displayed.
- The program will also show your weight class based on the calculated BMI.