摘要: 一、处理键盘缓冲区残余信息问题1#include<stdio.h>2intmain(void)3{4inta;5charc;6do7{8scanf("%d",&a);9scanf("%c",&c);10printf("a=%dc=%c\n",a,c);/*printf("c=%d\n",c);*/11}12while(c!='N');13return0;14} scanf("%c",&c);这句不能正常接收字符,什么原因呢?我们用printf( 阅读全文
posted @ 2011-03-07 12:01 SilentWind 阅读(453) 评论(0) 推荐(1) 编辑