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