C语言编程题已知D盘根目录 有一名为data1.txt的文件,其内容为:包括空格、回车和(见下)
答案:2 悬赏:70 手机版
解决时间 2021-03-12 08:27
- 提问者网友:星軌
- 2021-03-11 16:55
已知D盘根目录 有一名为data1.txt的文件,其内容为:包括空格、回车和大/小写英文字母的文件。请编写完整的C代码程序,去除该文件的所有回车,并将大写英文字母都改写为对应的小写字母,最终,将换好的文件保存在当前目录下一个名为data2.txt的文件中。
最佳答案
- 五星知识达人网友:狂恋
- 2021-03-11 17:45
#include <fstream>
using namespace std;
int main()
{
ifstream fin("D:\\data1.txt");
ofstream fout("D:\\data2.txt");
char c;
while (fin >> c)
{
if (c == '\n')
continue;
if (c >= 'A' && c <= 'Z')
c += 'a' - 'A';
fout << c;
}
return 0;
}
using namespace std;
int main()
{
ifstream fin("D:\\data1.txt");
ofstream fout("D:\\data2.txt");
char c;
while (fin >> c)
{
if (c == '\n')
continue;
if (c >= 'A' && c <= 'Z')
c += 'a' - 'A';
fout << c;
}
return 0;
}
全部回答
- 1楼网友:动情书生
- 2021-03-11 18:42
是不是资源被删了?
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯