实验6

1.

// 合并两个文件内容到一个新文件中。
// 文件名均从键盘输入

#include 
#include    
#include <string>
#include 
using namespace std;

int main() {
    char filename1[10], filename2[10], newfilename[10];
    
    cout << "输入要合并的两个文件名: " ;
    gets(filename1); gets(filename2);
    cout << "输入合并后新文件名: " ;
    cin >> newfilename;
    
    ofstream fout;        // 输出文件流对象 
    ifstream fin;        // 输入文件流对象 
    
    
    fin.open(filename1);  // 将输入文件流对象fin与文件filename1建立关联 
    if(!fin.is_open()) {  // 如果打开文件失败,则输出错误提示信息并退出 
        cerr << "fail to open file " << filename1 << endl;
        system("pause");
        exit(0);    
    }
    
    fout.open(newfilename);    // 将输出文件流对象fout与文件newfilename建立关联 
    if(!fin.is_open()) {  // 如果创建/打开文件失败,输出错误提示信息并退出  
        cerr << "fail to open file " << newfilename << endl;
        system("pause");
        exit(0);
    }
    
    char ch;
    
    // 从文件输入流对象fin中获取字符,并将其插入到文件输出流对象fout中 
    while(fin.get(ch)) 
        fout << ch;
    
    fin.close();  // 关闭文件输入流对象fin与文件filename1的关联 
    
    fout << endl; // 向文件输出流对象fout中插入换行 
    
    
    fin.open(filename2);  // 将输入文件流对象fin与文件filename2建立关联 
    if(!fin.is_open()) {  // 如果打开文件失败,则输出错误提示信息并退出
        cerr << "fail to open file " << filename2 << endl;
        system("pause");
        exit(0);    
    }
    
    // 从文件输入流对象fin中获取字符,并将其插入到文件输出流对象fout中
    while(fin.get(ch))
        fout << ch;
    
    fin.close();     // 关闭文件输入流对象fin与文件filename2的关联
    
    fout<<"\nmerge successfully."<<endl;
    fout.close();    // 关闭文件输出流对象fout与文件newfilename的关联

    system("pause");
    
    return 0;
} 

 

截图

实验6_第1张图片

 

2

#include 
#include
#include <string>
#include 
#include "utils.h"
#include
#include
using namespace std;
int main() {
    ifstream fin;
    ofstream fout;
    string filename;
    int n, file= 0;
    string s, a[100];
    cout << "输入名单列表文件名:";
    cin >> filename;
    cout << "输入随机抽点人数:";
    cin >> n;
    fin.open(filename, ios_base::in);
    if (!fin.is_open()) {
        cerr << "fail to open file " << filename << endl;
        system("pause");
        exit(0);
    }
    
    if (fin) {
        while (getline(fin, s)) {
            a[file++] = s;
        }
        fin.close();
    }
    string filename1;
    filename = getCurrentDate() + ".txt";
    cout << "随机抽点中..." << filename1<< endl;
    srand(std::time(0));
    for (int i=1;i<=n;i++) {
        int num;
        int random= rand();
        num= rand() % file+1;
        cout <<  a[num] << endl;
        fout.open(filename, ios_base::app);
        fout << a[num] << endl;
        fout.close();
    }
    system("pause");
    return 0;
}
main
#include <string>
using std::string;
string getCurrentDate();
utils.h
#include "utils.h" 
#include  
using std::string;
const int SIZE = 20;
// 函数功能描述:返回当前系统时间 
// 参数描述:无参数
// 返回值描述:以string类型返回系统当前日期,格式诸如20190611 
string getCurrentDate() {        
    time_t time_seconds = time(0);    
    struct tm now_time;    
    localtime_s(&now_time, &time_seconds); // 使用了更安全的localtime_s()       
    char date[SIZE];
    strftime(date, SIZE, "%Y%m%d", &now_time);        
    return (string(date));
}
utils.h

截图

实验6_第2张图片

实验6_第3张图片

 

#include 
#include    
#include 
#include 
using namespace std;
 
int main(){
    string textname,line0;
    char a[1000];
    cout<<"输入要统计的英文文本文件名:";
    cin>>textname;
    ifstream fin;
    int n=0,x=1,b=1;
    char ch;
    fin.open(textname); 
    if(!fin.is_open()) { 
        cerr << "fail to open file " << textname << endl;
        exit(0);    
    } 
    while(fin.get(ch)) 
      {
        
       if(ch!='\n')
         {
            n++;
            if(ch==' ')
              b++;
         }
            
       else
            {
            b++;
            x++;
            }
    }
      
    cout<<"字符数: "<endl;
    cout<<"单词数:"<endl;
    cout<<"行数:"<endl;
   return 0;
}

4
4

 

实验6_第4张图片

 

总结:程序的难点在于随机数的构造,还有头文件。

 

你可能感兴趣的:(实验6)