免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: jason8155
打印 上一主题 下一主题

请教改改这个程序 [复制链接]

论坛徽章:
0
31 [报告]
发表于 2005-08-02 02:38 |只看该作者

请教改改这个程序

这样就可以大体了解getchar的功用了。


  1. #include <stdio.h>;

  2. int main(){
  3.         char c;
  4.         c = getchar();    //input 'y' then return
  5.         putchar(c);        // 'y'
  6.         c = getchar();   
  7.         putchar(c);        // '\n'
  8.         c = getchar();
  9.         putchar(c);
  10.         c = getchar();
  11.         putchar(c);
  12.         return 0;
  13. }
复制代码

论坛徽章:
0
32 [报告]
发表于 2005-08-02 08:42 |只看该作者

请教改改这个程序

原帖由 "kernelxu"][/quote 发表:

[quote]并且好像输入n也计算(将c=getchar()=='y'改成(c=getchar())=='y'也不行)

不好意思,这是因为fflush(),没有清除掉上次多输入的“y”的原因。

但是若读回fflush(stdin)的返回值:
  1. k = fflush(stdin);
复制代码

k = 0
这说明fflush(stdin)起作用了。
这里的fflush()究竟出了什么问题呢?

论坛徽章:
0
33 [报告]
发表于 2005-08-02 09:17 |只看该作者

请教改改这个程序

scanf好像会刷新缓冲区的

论坛徽章:
0
34 [报告]
发表于 2005-08-02 09:21 |只看该作者

请教改改这个程序

[quote]原帖由 "AndyFastow"][/quote 发表:

刷新了缓冲区才会让你读到“\n”的,你应该忽略掉“\n”等等。。

论坛徽章:
0
35 [报告]
发表于 2005-08-03 01:57 |只看该作者

请教改改这个程序

试试下面的:
#include <stdio.h>;

int main(void)
{
        int  i,j;
        char c;

        printf("\n do you want to cal: y/n \n";

        while(c = getchar() == 'y') {
                printf("input number:";
                scanf("%d%d",&i,&j);   
                printf("i*j=%d \n"
                           "do you want to cal: y/n \n", i*j);
                c = getchar();               
        }
        return 0;
}

论坛徽章:
0
36 [报告]
发表于 2005-08-03 09:00 |只看该作者

请教改改这个程序

请回帖的各位同志先看看楼上以前的帖子
此问题已得到了很好的解决
fflush(stdin)因为为明确定义对stdin的行为,所以不建议使用(很有可能无效)
此题答案1 ,在scanf后面加一行getchar()读完残留信息
            2 ,  setbuf(stdin,0)清除输入缓冲

论坛徽章:
0
37 [报告]
发表于 2005-08-03 09:22 |只看该作者

请教改改这个程序

原帖由 "luojiannx" 发表:
请回帖的各位同志先看看楼上以前的帖子
此问题已得到了很好的解决
fflush(stdin)因为为明确定义对stdin的行为,所以不建议使用(很有可能无效)
此题答案1 ,在scanf后面加一行getchar()读完残留信息
          ..........

正解!

论坛徽章:
0
38 [报告]
发表于 2005-08-03 20:42 |只看该作者

请教改改这个程序

man fflush的输出
NOTES: Note  that fflush() only flushes the user space buffers provided by the C library.

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
39 [报告]
发表于 2005-08-03 21:01 |只看该作者

请教改改这个程序

原帖由 "fsilence" 发表:
man fflush的输出
NOTES: Note  that fflush() only flushes the user space buffers provided by the C library.


恩..看到了..man 的不够仔细啊..
谢谢提醒.

论坛徽章:
0
40 [报告]
发表于 2005-08-03 23:20 |只看该作者

请教改改这个程序

自己类似问题的解决~~不是很精巧但很有效
scanf("%d%d%*[^\n]",&i,&j);
getchar();
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP