fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int
  6. main ()
  7. {
  8.  
  9. cout << 31.23 << ", ";
  10.  
  11. cout.setf (ios::hex, ios::basefield);
  12.  
  13. cout.setf (ios::showbase); //LINE I
  14.  
  15. cout << 31.23 << ", ";
  16.  
  17. cout.unsetf (ios::showbase); // LINE II
  18.  
  19. cout << 63.23 << ", ";
  20.  
  21. return 0;
  22.  
  23. }
  24.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
31.23, 31.23, 63.23,