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
+5.7k Golang : Function as an argument type example
+16.8k Golang : How to save log messages to file?
+14k Golang : How to convert a number to words
+22.6k Golang : Gorilla mux routing example
+5.6k Golang : Find change in a combination of coins example
+6.4k Golang : When to use make or new?
+7.6k Golang : Reverse a string with unicode
+5.5k Golang : ROT32768 (rotate by 0x80) UTF-8 strings example
+16.2k Golang : Execute terminal command to remote machine example
+12.8k Swift : Convert (cast) Int to String ?
+24.2k Golang : Change file read or write permission example
+16.6k Golang : Fix cannot convert buffer (type *bytes.Buffer) to type string error