Native/C++
cout flags
aucd29
2013. 10. 2. 19:03
// modify flags
http://www.test.com
// hhhhhhhhhh
[code]
#include <iostream>
using namespace std;
int main () {
cout.flags ( ios::right | ios::hex | ios::showbase );
cout.width (10);
cout << 100;
return 0;
}
[/code]
http://www.test.com
// hhhhhhhhhh
[code]
#include <iostream>
using namespace std;
int main () {
cout.flags ( ios::right | ios::hex | ios::showbase );
cout.width (10);
cout << 100;
return 0;
}
[/code]