full precision double

I am calculating Min and Max of a vector of type double. Below is the kind of data i have. I am using Max_Element and Min_Element to automatically find the min and max value.
The problem is it automatically converts the values into the format "4.0877e+07".

 
  40877036,40871239,40877111,40877000,40877030,.....


I want to have the full values. Can anyone help me with this.

1
2
  auto biggest = std::max_element(begin(Vec1), end(Vec1));
auto smallest = std::min_element(begin(Vec1), end(Vec1));
It worked!

Thank you so much JLBorges.

Topic archived. No new replies allowed.