home *** CD-ROM | disk | FTP | other *** search
- /* FORMIOD.CPP: Predefined Manipulators
- */
-
- #include <iostream.h>
- #include <iomanip.h>
-
- int main()
- {
- int i = 11;
-
- cout << setw(10) <<
- setfill('-') <<
- setbase(ios::hex) <<
- setiosflags(ios::uppercase) <<
- resetiosflags(ios::right) << //toggle right justify flag off
- setiosflags(ios::left) <<
- i << endl; //output newline
- return 0;
- }
-