xxxxxxxxxx
#include <iostream>
#include <iomanip>
int main() {
double myDouble = 123456789.123456789;
// Set the stream to fixed-point notation
std::cout << std::fixed;
// Print the double without scientific notation
std::cout << "My double: " << myDouble << std::endl;
return 0;
}