Golang : Calculate BMI and risk category
I'm building a healthcare IoT device that will ask a person about their weight and report back the risk category. Eventually, the plan is to stop asking the question and take the weight measurement from a pressure sensor and display the risk category on a display. For now, let's get the basic right first.
To calculate BMI(Body Mass Index), the formula is
BMI = mass / height * height
where mass is in kilograms and height is in meters
and the health risk categories are :
- Underweight < 18.5
- Normal >= 18.5 and < 25
- Overweight >= 25 and < 30
- Obese >= 30
Here you go!
package main
import (
"fmt"
"math"
)
var (
weight, height, bmi float64
)
func main() {
fmt.Println("Enter your weight in kilograms : ")
fmt.Scanf("%f", &weight)
fmt.Println("Enter your height in meters : ")
fmt.Scanf("%f", &height)
fmt.Println("You have entered weight of : ", weight)
fmt.Println("You have entered height of : ", height)
bmi = weight / math.Pow(height, 2)
fmt.Println("Your BMI is : ", bmi)
fmt.Print("Your risk category is : ")
if bmi < float64(18.5) {
fmt.Println("Underweight")
} else if bmi < 25 {
fmt.Println("Normal weight")
} else if bmi < 30 {
fmt.Println("Overweight")
} else {
fmt.Println("Obese")
}
// calculate normal weight based on height and bmi = 25
normalWeight := 25 * math.Pow(height, 2)
delta := weight - normalWeight
fmt.Printf("The normal weight for your height is : %0.2v kilograms.\n", normalWeight)
if (delta > 0) && (bmi > 30) {
fmt.Printf("You need to reduce %0.2v kilograms.\n", math.Abs(delta))
}
if (delta < 0) && (bmi < float64(18.5)) {
fmt.Printf("You need to increase %0.2v kilograms.\n", math.Abs(delta))
}
}
Sample output:
Enter your weight in kilograms :
100
Enter your height in meters :
1.7
You have entered weight of : 100
You have entered height of : 1.7
Your BMI is : 34.602076124567475
Your risk category is : Obese
The normal weight for your height is : 72
You need to reduce 28 kilograms.
Happy coding!
See also : Golang : Calculate diameter, circumference, area, sphere surface and volume
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.8k Linux : How to install driver for 600Mbps Dual Band Wifi USB Adapter
+5.6k Golang : Launching your executable inside a console under Linux
+5.7k Golang : Use NLP to get sentences for each paragraph example
+23.6k Golang : Use regular expression to validate domain name
+7.2k Golang : Hue, Saturation and Value(HSV) with OpenCV example
+5.5k Unix/Linux : How to test user agents blocked successfully ?
+25k Golang : Convert uint value to string type
+5.4k Golang : Configure crontab to poll every two minutes 8am to 6pm Monday to Friday
+8.5k Golang : Executing and evaluating nested loop in html template
+17.3k Golang : Defer function inside init()
+9.3k Golang : Validate IPv6 example