Please help me with the C++ class
I give out 20 points for this.


Write a short description comment at the top of the code.

The following code should be put inside main():
1-Define a named constant CHICKEN_PRICE and set the value to 7.25
2-Define a variable named chickenCount that can contain only a whole number.
3-Define a variable named totalPrice using double type.
4-Display a user text prompt "Enter number of chickens: "
5-Use the "cin" statement to read an input value into the variable chickenCount.
6-Calculate the total price by using multiplication and store the result in the variable totalPrice.
7-Display the result in the format like this



Answer :