JAVA 基于application的程序,读文件“test.txt”,统计其中英文字母的个数和大写字母的个数,并输出。 5
JAVA程序,编写一基于application的程序,读文件“test.txt”,统计其中英文字母的个数和大写字母的个数,并输出。...
JAVA程序,编写一基于application的程序,读文件“test.txt”,统计其中英文字母的个数和大写字母的个数,并输出。
展开
展开全部
原题要求你把test.txt中大写字母转换成小写,小写转换成大写 然后存进write.txt。
就是大小写互换 存入另一个文件
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream fileread,filewrite;
char ch;
fileread.open("test.txt",fstream.in);
filewrite.open("write.txt",fstream.out);
if(!fileread)
{
cout<<"打开失败"<<endl;
return -1;
}
while (!fileread.eof())
{
ch = fileread.get();
if(ch>='a'&&ch<='z')
ch -= 32;
else if(ch>='A'&&ch<='Z')
ch += 32;
filewrite.put(ch);
}
fileread.close();
filewrite.close();
return 0;
}
就是大小写互换 存入另一个文件
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream fileread,filewrite;
char ch;
fileread.open("test.txt",fstream.in);
filewrite.open("write.txt",fstream.out);
if(!fileread)
{
cout<<"打开失败"<<endl;
return -1;
}
while (!fileread.eof())
{
ch = fileread.get();
if(ch>='a'&&ch<='z')
ch -= 32;
else if(ch>='A'&&ch<='Z')
ch += 32;
filewrite.put(ch);
}
fileread.close();
filewrite.close();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询