struct person { string name; int age; double height = 71.; double weight = 74.; double calcBMI() { double bmi; bmi = weight / pow((height / 100), 2); return bmi; } void Draw(){ printf("age=%d\n",age); cout<