iomanip.h
来自「eC++编译器源码」· C头文件 代码 · 共 19 行
H
19 行
#pragma iomanip
typedef iosFoo* iosret;
typedef struct {int x;} iosFoo;
typedef enum{binary=0,hex=16,oct=32,dec=64} ManipBase;
iosret setw(unsigned int width);
iosret setprecision(unsigned int width);
iosret resetiosflags();
iosret setfill(char fill);
typedef class ios {
public:
typedef enum{left=1, scientific=2, fixed=4, right=8, in=8, out=16} iosflags;
int temp;
};
iosret setiosflags(ios::iosflags flags);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?