C 簡單的檔案輸入輸出

2021-06-27 19:40:09 字數 732 閱讀 3615

輸出到文字

#include

#include

int main()

從文字輸入

#include #include #include const int size = 60;

int main()

double value;

double sum = 0.0;

int count = 0;

infile >> value;

while (infile.good()) //在eof fail bad 三種情況下跳出迴圈

/*while (infile >> value) //可用這個while迴圈代替上面的

*/if (infile.eof()) //不可先判斷fail,因為fail在eof也返回true

cout << "end of file reached.\n";

else if (infile.fail())

cout << "input terminated for unknown reason.\n";

if (count == 0)

else

infile.close();

system("pause");

return 0;

ofstream outfile幾乎跟cout一模一樣,infile 跟cin也差不多



C 簡單檔案輸入 輸出

c 提供了一系列的方法,使得將讀取鍵盤輸入和在螢幕上顯示輸出 統稱為控制台輸入 輸出 的技巧用於檔案輸入 輸出 檔案i o 非常簡單,具體如下文 使用cin進行輸入時,程式將輸入視為一系列的位元組,其中每個位元組都被解釋為字元編碼。也就是說 不管目標的資料型別是什麼,輸入一開始都是字元資料 文字資料...

簡單檔案輸入輸出

為了向乙個文件寫入資料,需要建立乙個ofstream型別的物件 ofstream output 為了指定要寫入的檔案。需要呼叫output物件的open函式 如下所示 output.open number.txt 此語句會建立乙個名為number.txt的檔案,如果檔案已經存在,其內容會被銷毀,並建...

簡單檔案輸入 輸出

意義與作用較簡單,不刻意說明。1.文字io和文字檔案 剛開始是文字資料,然後,cin物件負責將文字轉換為其他型別。例 輸入行是 38.5 19.2 char ch cin ch 輸入行中的第乙個字元被賦值給ch。這裡是3,存入ch的是3對應的ascii碼值。int n cin n 這裡將不斷讀取,直...