69,700
社区成员
发帖
与我相关
我的任务
分享
/*
02 * 本程序适用于 Windows 和 Linux 系统,
03 * 测试环境:
04 * Windows XP,Microsoft Visual C++ 6.0 SP6
05 * Ubuntu Linux 8.04, NetBeans IDE 6.7
06 */
07
08 #include <stdio.h>
09
10 int main()
11 {
12 char ch1;
13 char ch2;
14
15 scanf("%c", &ch1);
16 printf("ch1 = %d", ch1);
17
18 setbuf(stdin, NULL); /*清空缓冲区*/
19
20 scanf("%c", &ch2);
21 printf("ch2 = %d", ch2);
22 return 0;
23 }