/*★ stream6.CPP 処理子(manipulator) 前田 稔 ★*/ #include using namespace std; int main(void) { cout << oct << 1234 << '\n' << dec << 1234 << '\n' << hex << 1234 << '\n'; return(0); }