欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++实验 | 事先用Windows的记事本建立一个文本文件ff.txt

程序员文章站 2022-06-15 22:45:57
...

① 编写一个函数void ReadFile(char* s)实现读取以s串为文件名的文本文件的内容在屏幕上显示。

② 编写一个函数void Change(char *s1,char *s2)将文本文件中的小写字母全部改写成大写字母生成一个新文件ff2.txt。

③ 主函数中调用ReadFile("ff.txt");显示ff.txt的内容,调用Change ("ff.txt" ,"ff2.txt");根据ff.txt文件作修改生成一个新的文件ff2.txt,最后再调用ReadFile("ff2.txt");显示新文件的内容。


#include <fstream>
#include <iostream>
#include<string>
using namespace std;
void ReadFile(const char  *s);
void Change(const char  *s1, const char *s2);
int main()
{
	ReadFile("F:\\ff.txt");
	Change("F:\\ff.txt", "F:\\ff2.txt");
	ReadFile("F:\\ff2.txt");
	return 0;
}
void ReadFile(const char *s)
{
	char ch;
	ifstream inf(s);
	if (!inf)
	{
		cout << "Cannot open the file\n";
		return;
	}
	while (inf.get(ch))
		cout << ch;
	cout << endl;
	inf.close();
}
void Change(const char *s1, const char *s2)
{
	ifstream ifile("F:\\ff.txt");
	if (!ifile)
	{
		cout << "ff.txt cannot open" << endl;
		return;
	}
	ofstream ofile("F:\\ff2.txt");
	if (!ofile)
	{
		cout << "ff2.txt cannot open" << endl;
		return;
	}
	char ch;
	while (ifile.get(ch))
	{
		if (ch >= 'a'&&ch <= 'z')
			ch -= 32;
		ofile.put(ch);
	}
	ifile.close();
	ofile.close();
}