Go-BMI
is a simple applicatoin that I am building to help me continue my learning and training in Golang.
The idea is to build a user interface for a user to input their height
, weight
, which will be used to compute their BMI.
the result will then display the category that belongs to the user.
underweight
= <18.5normal weight
= 18.5-24.9overweight
= 25-29.9obesity
= BMI of 30 or greater
- feet and inches
- we will then extend the functionality to also include:
meters
,centimeters
- pounds
- for extending it: we will include
kilograms
### Formula:
BMI = kg/m2
Kg is a person's weight in kilograms, and m2 is there height in metres squared.