Develop and run a C++ program to satisfy the following need:
A landscaping company sends employees to various sites (e.g. parks, school grounds, golf
courses, etc). These sites will contain a variable number of land segments (plots) having one of 4
shapes: Square, rectangle, triangle, or circle. There may be more than one plot of the same
shape, and the plots vary in size. Employees will need to run a program (the one you are writing)
on a portable computer as they survey the site and perform determine the total area of all the
plots at the site. The result will be used to determine the amount of spil, mulch, grass seed, and
other landscaping materials that will be needed to maintain the site. The program should adhere
to the following characteristics:
\begin{itemize}
\item Use functions throughout
\item The user should be presented with a menu of choices (including an exit)
\item The user should be prompted to input the necessary dimensions of the respective
geometric shape in question.
\end{itemize}
Present the source code and evidence of output.