#include #include using namespace std; int main () { float x; cout << "Enter a floating point number: " ; cin >> x; cout << endl; cout << "You entered " << x << endl; return 0; }