#include#include#includeusing namespace std;
int main()
fout1<<10<<" "<<123.456<<"\"this is a test fill.\"\n";
fout1.close();
//ifstream fin1("test2.dat",ios::in);
if(!fin1)
char* ptr;
ptr=new char[30];
int i=0;
while(in!=eof)
/*char c;
while(fin1>>c)
fout1<<123<<" "
fout1.close();
ifstream fin1("test.dat",ios::in);
if(!fin1)
char str[80];
while(fin1)
fin1.close();
system("pause");
return 0;
}
輸入字串,逆序輸出(兩種方法)
從鍵盤上輸入一組字串,實現逆序輸出。方法一 輸出的時候從 n 1 的資料往前依次輸出。方法二 假設輸入n個字元,字串預設末尾補上 0 將第0個字元和第 n 1 個字元交換,依次交換中間的資料 輸入的資料he llo 0 第1次交換後的資料oe llh 0 第 n 1 次交換後的資料ol leh 0 ...
寫入檔案的兩種方法
寫入檔案的兩種方法 方法1 file.write 方法2 file.writelines write方法是將整個字串寫入到檔案中,而writelines是將乙個字串序列寫入到檔案中 如何進行選擇 如果引數是字串,就使用write方法 如果引數是序列,就使用writelines方法。開啟檔案 file...
C 輸入輸出到檔案的方法
1 首先在檔案中包含fstream類,其從iostream類派生而來,包含了處理檔案輸入的ifstream類與檔案輸出的ofstream類,因此可以使用iostream類的所有方法。2 建立ofstream物件管理輸出流 與特定檔案關聯起來 使用cout方式使用該物件。include ofstrea...