#include #include using namespace std; int main() { cout << "Max positive float value " << FLT_MAX << endl; cout << "Min positive float value " << FLT_MIN << endl; cout << "Max positive double value " << DBL_MAX << endl; cout << "Min positive double value " << DBL_MIN << endl; cout << "Max positive long float value " << LDBL_MAX << endl; cout << "Min positive long float value " << LDBL_MIN << endl; return 0; }