1. 程式人生 > >例項154 使用 流類庫輸出一個檔案

例項154 使用 流類庫輸出一個檔案

定義輸出流物件fout,先開啟檔案out.txt,再判斷是否成功開啟,輸出Hello World。程式碼如下:

​
#include<iostream>
#include<fstream>
using namespace std;
int main(){
	ofstream fout;
	fout.open("out.txt");              //開啟檔案     
	if(fout.fail())                    //如果開啟失敗 
	    cout<<"out.txt 檔案開啟失敗"<<endl;
	else
	     fout<<"Hello World"<<'\n';     //輸出 
	
}

​