| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 711 人关注过本帖
标题:这个程序怎么修改
只看楼主 加入收藏
zhaozhiwei
Rank: 1
等 级:新手上路
帖 子:70
专家分:0
注 册:2007-7-19
结帖率:100%
收藏
 问题点数:0 回复次数:5 
这个程序怎么修改
#include<iostream>
using namespace std;
void main()
{
int sw=0;
while(sw==0)
 {
    char str1[20];
    gets(str1);
    cout<<"str1 is :"<<endl;
    puts(str1);
    cout<<"0-继续,1-结束";
    cin>>sw;
  }
}
上面的程序执行结果错误,不知道怎么修改......
2008-02-23 11:23
随心
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:12
帖 子:2577
专家分:250
注 册:2007-8-12
收藏
得分:0 
说明白你想要的结果。

天之道,利而不害。圣人之道,为而不争。信言不美,美言不信。善者不辩,辩者不善。知者不博,博者不知。
2008-02-23 11:32
sunkaidong
Rank: 4
来 自:南京师范大学
等 级:贵宾
威 望:12
帖 子:4496
专家分:141
注 册:2006-12-28
收藏
得分:0 
#include<iostream>
using namespace std;
void main()
{
int sw=0;
while(sw==0)
{
    char str1[20];
    gets(str1);
    
    cout<<"str1 is :"<<endl;
    puts(str1);
    cout<<"0-继续,1-结束";
    cin>>sw;
    fflush(stdin);
  }
}
2008-02-23 11:32
zhaozhiwei
Rank: 1
等 级:新手上路
帖 子:70
专家分:0
注 册:2007-7-19
收藏
得分:0 
结束了,不过我想问一下楼上的师兄,为什么加上fflush(stdin);
就行了?

择晴日,访友欢。无限天涯各一边,亲谊心相连。品美食,游山川。闲来无事灌论坛,幸福至年年。
2008-02-23 11:42
sunkaidong
Rank: 4
来 自:南京师范大学
等 级:贵宾
威 望:12
帖 子:4496
专家分:141
注 册:2006-12-28
收藏
得分:0 
你输入的数据在缓冲呢.没进入内存.用这 fflush(stdin),表示把缓冲数据送内存,这样保证缓冲的数据释放掉.这样就不会出现错误.个人观点.
The fflush function flushes a stream. If the file associated with stream is open for output, fflush writes to that file the contents of the buffer associated with the stream. If the stream is open for input, fflush clears the contents of the buffer. fflush negates the effect of any prior call to ungetc against stream. Also, fflush(NULL) flushes all streams opened for output. The stream remains open after the call. fflush has no effect on an unbuffered stream.

Buffers are normally maintained by the operating system, which determines the optimal time to write the data automatically to disk: when a buffer is full, when a stream is closed, or when a program terminates normally without closing the stream. The commit-to-disk feature of the run-time library lets you ensure that critical data is written directly to disk rather than to the operating-system buffers. Without rewriting an existing program, you can enable this feature by linking the program’s object files with COMMODE.OBJ. In the resulting executable file, calls to _flushall write the contents of all buffers to disk. Only _flushall and fflush are affected by COMMODE.OBJ.
2008-02-23 12:32
zhaozhiwei
Rank: 1
等 级:新手上路
帖 子:70
专家分:0
注 册:2007-7-19
收藏
得分:0 
谢谢 ![bc01]

择晴日,访友欢。无限天涯各一边,亲谊心相连。品美食,游山川。闲来无事灌论坛,幸福至年年。
2008-02-25 12:02
快速回复:这个程序怎么修改
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028172 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved