ios flags
-
ios flags.이전글 2011. 11. 8. 11:28
ios::basefield (0x70) ios::dec (0x10) --default integers treated as decimal ios::oct (0x20) integers treated as octal ios::hex (0x40) integers treated as hexadecimal ios::showbase (0x80) octal integers start with 0, hexadecimal integers start with 0x or 0X ios::showpoint (0x100) floating-point numbers output with a decimal point ios::uppercase (0x200) hexadecimal integers use uppercase A - E, fl..