412546.2441262.qx3zqy7 Start Two doubles are read as the base and the height of a Triangle object. Declare and assign pointer myTriangle with a new Triangle object using the base and the height as arguments in that order. Ex: If the input is 1.5 3.0, then the output is: Triangle's base: 1.5 Triangle's height: 3.0 1 #include 2 #include 3 using namespace std; 4 5 class Triangle { 6 public: 7 Triangle (double baseValue, double heightValue); 8 void Print(); 9 private: 10 double base; 11 double height; 12 }; 13 Triangle:: Triangle (double baseValue, double heightValue) { 14 base baseValue; 15 height = heightValue; 16} 17 void Triangle::Print() { 3 2 4 5 >-DDD-D