Exercise: BMI Categorizer
Explore how to compute the Body Mass Index (BMI) using C++ variables and constants, then evaluate the BMI against a threshold without using conditional statements or loops. Understand how to directly print boolean expressions reflecting whether BMI is below, equal to, or above the defined threshold, reinforcing use of arithmetic and comparison operators in basic C++ programming.
We'll cover the following...
We'll cover the following...
Problem statement
A health-data demo system must run BMI calculations automatically using ...