Friday, August 14, 2009
Q3.5 APPG
INT intUnderweight = 0;
if(fltBMI < 18.5)
{
intUnderweight = intUnderweight + 1;
}
INT intIdealweight = 0;
if(fltBMI >= 18.5 && fltBMI < 25)
{
intIdealweight = intIdealweight + 1;
}
underweightLabel.Text = intUnderweight;
idealweightLabel.Text = intIdealweight;
- 8/14/2009 08:00:00 PM;