fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. cout.setf(ios::showbase);
  7. int value=59;
  8. cout<<dec<<value<<endl;
  9. cout<<oct<<value<<endl;
  10. cout<<hex<<value<<endl;
  11. cout<<uppercase<<hex<<value<<endl;
  12. cout<<hex<<value<<endl;
  13. cout.unsetf(ios::uppercase);
  14. cout<<hex<<value<<endl;
  15. return 0;
  16. }
Success #stdin #stdout 0s 5540KB
stdin
Standard input is empty
stdout
59
073
0x3b
0X3B
0X3B
0x3b