设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 942|回复: 0
打印 上一主题 下一主题

帮忙看看代码 逻辑错误..

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:48:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
输出到文件时 不能连续输入.不知道为什么,高手请指点

#include<iostream>
#include<fstream>
#include<cstdlib>

using namespace std;

void cout_char(ofstream& out_stream);
//提示用户输入将用户的输入保存到文件中同时输出到屏幕.

void cin_char(ifstream& in_stream);
//读取文件中的内容并发送到屏幕.

int main()
{
    ifstream fin;
    ofstream fout;

    fin.open("number.txt");
    if(fin.fail())
    {
        cout<<"读取文件打开失败\n";
        exit(1);
    }


    cin_char(fin);


    fout.open("number.txt");
    if(fout.fail())
    {
        cout<<"输出文件打开失败\n";
        exit(1);
    }

   
    cout_char(fout);

    fin.close();
    fout.close();

    cout<<"程序运行结束"<<endl;

    system("pause");

    return 0;
}


void cout_char(ofstream& out_stream)
{
    char ch;

    cout<<"请输入建议输入完毕请按2次回车结束输入"<<endl;


    while(cin.get(ch))
    {
        if(ch=='\n')
        {
            cin.get(ch);
            out_stream.put(ch);
            cout<<ch;
            if(ch=='\n')
            {
                cout<<"输入结束,谢谢使用"<<endl;
                break;
            }
        }
        else
        {
            cin.get(ch);
            out_stream.put(ch);
            cout<<ch;
        }
    }
}


void cin_char(ifstream& in_stream)
{
    char next;

    in_stream.get(next);
    while(!in_stream.eof())
    {
        cout<<next;

        in_stream.get(next);
    }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 22:42 , Processed in 0.069024 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表