1.1 **認識cout
#include
using
namespace
std;
int add(int a, int b)
int main()
cout 列印各種型別的資料
endl: 換行的同時,重新整理緩衝區flush
hello
world
!30.2
312
1.2 其他有趣的demo#include
#include
using
namespace
std;
int main()
2.1 基本例項#include
#include
#include
using
namespace
std;
int main()
使用空格做間隔,回車號結束
10 22.22 你好
1022.22
你好
2.2 稍微好玩的demo#include
#include
#include
using
namespace
std;
int main()
cout
0;}
輸入輸出流
c 通過以下幾個類支援檔案的輸入和輸出 ofstream寫操作的檔案類由ostream引申而來 ifstream讀操作的檔案類由istream引申而來 fstream可同時讀寫操作的檔案類由iostream引申而來 ifstream in tian.txt 開啟乙個檔案 ifstream in in...
輸入輸出流
預定義流類的物件與通用的流運算子 1 cin 2 cout 3 cerr是ostream類物件,在標準輸出裝置上顯示錯誤資訊 不帶緩衝,立即顯示 輸入輸出流 ostream 和 ofstream istream 和 ifstream fstream 定義檔案輸出流物件 fstream outfile...
輸入輸出流
流 按照方向分為 輸入流和輸出流。以記憶體為參照物將資料從資料來源中讀取到記憶體,為輸入流,也叫讀取流。將資料從記憶體中寫入資料來源,為輸出流,也稱為寫入流 流按照型別分 分為位元組流,字元流和物件流。由於計算機採用二進位制,所有資料的傳輸都是以位元組為單位傳輸。所以無論是那種流,其本質都是位元組流...