#include<stdio.h> main() { long a; char b,c; scanf("%d%c%c",&a, &b, &c); //输入“3空e空f” printf("%c\n",c); //输出变量c为'e' return 0; }