#include #include using namespace std; int main() { const double d {2.25}; cout << d << "\n"; cout << static_cast(d) << "\n"; //Create a value of type int. cout << d << "\n"; //The static_cast did not change the value of d. return EXIT_SUCCESS; }