This Java program calculates the body mass index (BMI) based on the user's weight and height input. It then categorizes the BMI into underweight, normal weight, or obese categories.
-
Input: Users are prompted to enter their weight in kilograms (Kg) and height in meters (m).
-
Calculation: The program calculates the BMI using the formula: weight / (height * height).
-
Classification:
- If BMI is less than 18.5, it's categorized as "Underweight".
- If BMI is between 18.5 and 24.9, it's categorized as "Normal".
- If BMI is greater than 30, it's categorized as "Obese".
- Furkan Aydemir
- deerborg
- Version: 1.0
- Release Date: 2024
This project is licensed under the MIT License - see the LICENSE.md file for details.