📄 iostream.h
字号:
#pragma iostream
#include <iomanip.h>
//for output, the maniplulators are hex/dec/oct/binary scientific/fixed
//also setw() for width and setprecision() for # of digits to right of decimal
//for input, call cin.eof() to test for failure
class iostreams {
public:
iostreams & operator<<(iosret x);
iostreams & operator<<(ManipBase x);
iostreams & operator<<(int x);
iostreams & operator<<(unsigned int x);
iostreams & operator<<(long x);
iostreams & operator<<(double x);
iostreams & operator<<(char x);
iostreams & operator<<(char x[]);
iostreams & operator<<(boolean x);
iostreams & operator>>(int &x);
iostreams & operator>>(unsigned int &x);
iostreams & operator>>(long &x);
iostreams & operator>>(double &x);
iostreams & operator>>(char &x);
iostreams & operator>>(char &x[]);
iostreams & operator>>(boolean &x);
boolean eof();
void *p;
};
iostreams cin;
iostreams cout;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -