码迷,mamicode.com
首页 > 其他好文 > 详细

scanf("%c", &ch)和scanf(" %c", &ch)和scanf("%s", str)的注意事项

时间:2019-09-02 19:40:43      阅读:112      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!