Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 816 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 816 Bytes

BMI Calculator

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.

Features

  • 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.

How to Use

  1. Run the program: Use your favorite Java IDE or the command line to execute the Main class.
  2. Input your details:
    • Enter your height in inches.
    • Enter your weight in pounds.
  3. Get your results:
    • Your BMI will be displayed.
    • The program will also show your weight class based on the calculated BMI.