标签:font str 回车 读取 scanf char 忽略 使用 问题
scanf("%c", &ch)和scanf(" %c", &ch):
%c会读取回车和空格,所以一定要使用后者,即在%c前面加一个空格。
%s用于读取char[]时,会忽略空格和回车,所以不会有这些问题。
scanf("%c", &ch)和scanf(" %c", &ch)和scanf("%s", str)的注意事项
标签:font str 回车 读取 scanf char 忽略 使用 问题
原文地址:https://www.cnblogs.com/FengZeng666/p/11448043.html