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
+15.2k Golang : Get query string value on a POST request
+13.8k Golang : How to determine if a year is leap year?
+21.6k SSL : How to check if current certificate is sha1 or sha2
+25.3k Golang : Generate MD5 checksum of a file
+20.1k Golang : How to get own program name during runtime ?
+7k Javascript : How to get JSON data from another website with JQuery or Ajax ?
+9.1k Golang : Serving HTTP and Websocket from different ports in a program example
+9.6k Golang : Eroding and dilating image with OpenCV example
+5.5k PHP : Convert CSV to JSON with YQL example
+14.3k Golang : How to pass map to html template and access the map's elements
+19.3k Golang : How to count the number of repeated characters in a string?
+17.6k Golang : Parse date string and convert to dd-mm-yyyy format