#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class chih
{
};
int main()
{
fstream in("chih.txt", ios::in);
if (!in)
{
cout << "fail to open." << endl;
exit(1);
}
fstream out("chih2.txt", ios::out|ios::app);
if (!out)
{
cout << "fail to open." << endl;
exit(1);
}
char ah;
while (!in.eof())
{
if (!'\r\n')//我想遇到个换行符就跳过去,这样貌似不行-0-??
{
in.get(ah);
out.put(ah - 32);
}
else
{
in.get(ah);
out.put(ah);
}
}
in.close();
out.close();
return 0;
文本的里边有换行,大写变小写的时候换行就一起给变了(0-0)!
分享好友
分享这个小栈给你的朋友们,一起进步吧。
订阅须知
• 所有用户可根据关注领域订阅专区或所有专区
• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询
• 专区发布评论属默认订阅所评论专区(除付费小栈外)