xt13-4.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;                //VC++ 6.0要此行
  4. //fun1函数从键盘输入20个整数,分别存放在两个磁盘文件中
  5. void fun1()
  6. {int a[10];
  7.  ofstream outfile1("f1.dat"),outfile2("f2.dat");  //分别定义两个文件流对象
  8.  if(!outfile1)                        //检查打开f1.dat是否成功
  9.   {cerr<<"open f1.dat error!"<<endl;
  10.    exit(1);
  11.   }
  12.  if(!outfile2)                        //检查打开f2.dat是否成功
  13.   {cerr<<"open f2.dat error!"<<endl;
  14.    exit(1);
  15.   } 
  16.  cout<<"enter 10 integer numbers:"<<endl;
  17.  for(int i=0;i<10;i++)          //输入10个数存放到f1.dat文件中
  18.   {cin>>a[i];
  19.    outfile1<<a[i]<<" ";}
  20.   cout<<"enter 10 integer numbers:"<<endl;
  21.  for(i=0;i<10;i++)           //输入10个数存放到f2.dat文件中
  22.   {cin>>a[i];
  23.    outfile2<<a[i]<<" ";}
  24.  outfile1.close();               //关闭f1.dat文件
  25.  outfile2.close();               //关闭f2.dat文件
  26. }
  27. //从f1,dat读入10个数,然后存放到f2.dat文件原有数据的后面
  28. void fun2()
  29. {ifstream infile("f1.dat");       //f1.dat作为输入文件
  30.  if(!infile)
  31.   {cerr<<"open f1.dat error!"<<endl;
  32.    exit(1);
  33.   }
  34.   ofstream outfile("f2.dat",ios::app); 
  35.  //f2.dat作为输出文件,文件指针指向文件尾,向它写入的数据放在原来数据的后面
  36.   if(!outfile)
  37.    {cerr<<"open f2.dat error!"<<endl;
  38.    exit(1);
  39.   }
  40.   int a;
  41.   for(int i=0;i<10;i++)
  42.    {infile>>a;           //磁盘文件f2.dat读入一个整数
  43.     outfile<<a<<" ";     //将该数存放到f2.dat中
  44.    }
  45.   infile.close();
  46.   outfile.close();
  47.  }
  48. //从f2.dat中读入20个整数,将它们按从小到大的顺序存放到f2.dat 
  49. void fun3()
  50. {ifstream infile("f2.dat"); //定义输入文件流infile,以输入方式打开f2.dat 
  51.  if(!infile)
  52.   {cerr<<"open f2.dat error!"<<endl;
  53.    exit(1);
  54.   }
  55.  int a[20];
  56.  int i,j,t;
  57.  for(i=0;i<20;i++)      
  58.   infile>>a[i];        //从磁盘文件f2.dat读入20个数放在数组a中
  59.  for(i=0;i<19;i++)     //用起泡法对20个数排序
  60.    for(j=0;j<19-i;j++)
  61.       if(a[j]>a[j+1])
  62.         {t=a[j];a[j]=a[j+1];a[j+1]=t;}
  63.   infile.close();                //关闭输入文件f2.dat
  64.   ofstream outfile("f2.dat",ios::out);
  65. // f2.dat作为输出文件,文件中原有内容删除
  66.   if(!outfile)
  67.    {cerr<<"open f2.dat error!"<<endl;
  68.     exit(1);}
  69. cout<<"data in f2.dat:"<<endl;
  70.   for( i=0;i<20;i++)
  71.     {outfile<<a[i]<<" ";      //向f2.dat输出已排序的20个数
  72.      cout<<a[i]<<" ";}        //同时输出到显示器
  73.   cout<<endl;
  74.   outfile.close();
  75. }
  76. int main()
  77. {fun1();                     //分别调用3个函数
  78.  fun2();
  79.  fun3();
  80.  return 0;
  81. }