while ((ch = getchar()) != '\n')或while ((ch = getch()) != '\r'),前者用的比较多,但不能接收回退符,后者能接收回退符。
while ((ch = getchar()) != '\n')