Answer:
Since Geography affects the way people live, most of the land in Europe allowed people to create farms which was a big part of the economy and still is today. It's oceans allowed for heavy use of fishing in places such at the 5 major rivers from your last, the Mediteranean sea, The North sea, and the Celtic sea. The biggest reason is the materials within the land of Europe.
A in machu pictures they built a temple in early American civilization
Answer:
MATLAB script is given below
Explanation:
/Practice with inheritance, polymorphism, and Abstract Data Types
//header file for Polygon class
#ifndef MYPOLY_H
#define MYPOLY_H
class myPoly
{
public:
//constructor
//const reference pass because the values w and h don't change and reference avoid the time it takes to copy large
// objects by value (if there were any)
myPoly();
myPoly(const float & w, const float & h);
//destructor
virtual ~myPoly();
//accessors
float getWidth();
float getHeight();
void setWidth(const float & w);
void setHeight(const float & h);
virtual float area() = 0;
private:
float width, height;
};
#endif