char *gets(char *str):从标准输入stdin读取一个字符串存储到字符指针变量 str 所指向的内存空间,相当于读取一行输入。
int getchar(void):从标准输入stdin获取一个字符。