#include #include #include #include #include "Smallest.h" using namespace std; int main () { vector a{1,2,3}; vectorwords{"beta","alpha", "charlie"}; vector> vectors{{1,2,3},{1,2,7},{1,2,-1}}; cout << Small(1,2,3) << endl; cout << Small(0.1f, 0.2f, 0.1f) << endl; cout << Small(1e9, -0.23, M_PI) << endl; cout << Small('a','b','c') << endl; cout << Small("dog","bat","car") << endl; SmallTest(a); SmallTest(words); SmallTest(vectors); return 0; }