?? tiomanip.cc
字號:
// test the parametrized manipulators#include <stdlib.h>#include <iomanip.h>main(){#ifdef _G_NO_TEMPLATES cerr << "(IO manipulators are not supported with this compiler)\n"); exit(-1);#else cout << dec << 1234 << ' ' << hex << 1234 << ' ' << oct << 1234 << endl; //SMANIP<int> x = setw(4); //operator<<(cout, x); cout << "(" << dec << setw(4) << setfill('*') << 12 << ")\n"; cout << "(" << 12 << ")\n"; cout << setiosflags(ios::internal); cout << "(" << setw(6) << -12 << ")\n"; exit(0);#endif}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -