1. 程式人生 > >第16周專案——閱讀程式4

第16周專案——閱讀程式4

問題及程式碼:

/*copyright(c)2016.煙臺大學計算機學院
 * All rights reserved,
 * 檔名稱:text.Cpp
 * 作者:李一波
 * 完成日期:2016年6月19日
 * 版本號:codeblocks
 *
 * 問題描述:
 * 輸入描述:
 * 程式輸出:
 */
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
int main( )
{
    int a;
    ofstream outfile("f1.dat",ios::out);
    if(!outfile)
    {
        cerr<<"open error!"<<endl;
        exit(1);
    }
    cin>>a;
    outfile<<a<<endl;
    outfile.close();
    return 0;
}

執行結果: