#include #include using std::cout; using std::cin; using std::endl; using std::ios; // This line added 1/23/02 for MW CodeWarrior. int main(){ cout << "Enter a double: "; double x; cin >> x; cout.setf( ios::showpoint ); cout.setf( ios::fixed ); cout.precision(2); cout << "Here is your double in bank format: " << x << endl; return 0; }