第16周项目1:小玩文件(2)

/*
*Copyright (c) 2016,烟台大学计算机学院
*All rights reserved.
*文件名称 :第16周项目1:小玩文件(2)
*作 者 : 于子娴
*完成日期 : 2016.6.23
*版 本 号 : v6.0
*
*问题描述 :
*输入描述 :
*程序输出 :
*/
#include 
#include 
#include 
using namespace std;
int main()
{
    fstream outfile,infile;
    infile.open("abc.txt",ios::in); // (1)
    if(!infile)
    {
        cout<<"Can’t open the file."<


 

你可能感兴趣的:(第16周项目1:小玩文件(2))