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

📄 iostream.h

📁 eC++编译器源码
💻 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 + -