绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
文本的里边有换行,大写变小写的时候换行就一起给变了(0-0)!
2019-09-03 11:40:06
#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;


分享好友

分享这个小栈给你的朋友们,一起进步吧。

IT知识联盟
创建时间:2019-07-05 15:30:45
分享收集到的大小知识点
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

栈主、嘉宾

查看更多
  • 王超
    栈主

小栈成员

查看更多
  • ?
  • youou
  • gamebus
  • chinacc
戳我,来吐槽~