#include<iostream> template<typename T> class Cube { public: T getArea(T length, T width, T height) { std::cout << length << " " << width << " " << height <&...