⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tiomanip.c

📁 早期freebsd实现
💻 C
字号:
// 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 + -