char get_first(void) { int ch; while((ch=getchar())=='\n') ;//略过上一步驻留在缓冲区中的回车符 while(getchar()!='\n') continue; return ch; }