Q2: Write C++ class to represent a baby height and weight chart. In the private part define character variable to represent the name of the baby, float variables to represent height and weight and...


Q2: Write C++ class to represent a baby height and weight chart. In the private<br>part define character variable to represent the name of the baby, float variables<br>to represent height and weight and integer for the baby's age in months. Provide a<br>constructor that enables an object of this class to be initialized when it's declared<br>to enter the distance. The default data for constructor are (name=

Extracted text: Q2: Write C++ class to represent a baby height and weight chart. In the private part define character variable to represent the name of the baby, float variables to represent height and weight and integer for the baby's age in months. Provide a constructor that enables an object of this class to be initialized when it's declared to enter the distance. The default data for constructor are (name="aaa", weight=2.5, height=50, age-0). Provide public methods that perform each of the following tasks: 1- Printinfo. This function has to show the baby information. 2- Checkweight. This functions check if the baby is overweight, skinny or normal with regard to his age according to the below table. 3- Checkheight. This functions check if the baby is tall, short or normal with regard to his age according to the below table. 4- CompareH. This functions compares two babies' height. This function has to be friend. 5- CompareW. This functions compares two babies' weight. This function has to be friend. Test these methods in the main.
Months<br>Weight (kg)<br>Height (cm)<br>2.5 - 4.3<br>46.3 - 53.4<br>3.4 - 5.7<br>51.1 - 58.4<br>2<br>4.4 - 7.0<br>54.7 - 62.2<br>5.1 - 7.9<br>57.6 - 65.3<br>5.6 - 8.6<br>60.0 - 67.8<br>6.1 - 9.2<br>61.9 - 69.9<br>6<br>6.4 - 9.7<br>63.6 - 71.6<br>7<br>6.7 - 10.2<br>65.1 73.2<br>7.0 - 10.5<br>66.5 - 74.7<br>7.2 - 10.9<br>67.7 - 76.2<br>10<br>7.5 - 11.2<br>67.7 - 76.2<br>11<br>7.4 - 11.5<br>70.2 - 78.9<br>12<br>7.8 - 11.8<br>71.3 - 80.2<br>CO<br>

Extracted text: Months Weight (kg) Height (cm) 2.5 - 4.3 46.3 - 53.4 3.4 - 5.7 51.1 - 58.4 2 4.4 - 7.0 54.7 - 62.2 5.1 - 7.9 57.6 - 65.3 5.6 - 8.6 60.0 - 67.8 6.1 - 9.2 61.9 - 69.9 6 6.4 - 9.7 63.6 - 71.6 7 6.7 - 10.2 65.1 73.2 7.0 - 10.5 66.5 - 74.7 7.2 - 10.9 67.7 - 76.2 10 7.5 - 11.2 67.7 - 76.2 11 7.4 - 11.5 70.2 - 78.9 12 7.8 - 11.8 71.3 - 80.2 CO

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions ยป

Submit New Assignment

Copy and Paste Your Assignment Here