Question: Write a complete C++ program that has three functions named as follows: int square(int): calculate an area of square (length*length). double triangle(double, double) : calculate
Write a complete C++ program that has three functions named as follows:
int square(int): calculate an area of square (length*length).
double triangle(double, double) : calculate an area of triangle (0.5*height*base).
double circle(double) : calculate an area of circle (3.14159 * (radius * radius)).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
