搜索
编程论坛
→
开发语言
→
『 C语言论坛 』
→ 萌新理解不了这个问题,能解释一下原理吗
标题:
萌新理解不了这个问题,能解释一下原理吗
只看楼主
xxdmyname
等 级:
新手上路
帖 子:2
专家分:0
注 册:2018-4-25
结帖率:
0
楼主
已结贴
√
问题点数:20 回复次数:1
萌新理解不了这个问题,能解释一下原理吗
#include <stdio.h>
int main(void)
{int guess=1;
while (getchar()!='y')
printf("well,then ,is it %d?\n,++guess);
/*加与不加的区别while (getchar ()!='\n')
continue;*/
}
搜索更多相关主题的帖子:
原理
int
while
getchar
continue
2018-04-25 22:00
李晨经纪人
等 级:
蝙蝠侠
威 望:
6
帖 子:175
专家分:848
注 册:2018-2-14
第
2
楼
得分:20
while (getchar ()!='\n')
continue;
举例当上面while (getchar()!='y'){...}
输入"abcd回车xyz回车"
第一个while循环接受到y字符,之后的z和回车都没有接受,这时while (getchar ()!='\n');把这两个字符吃掉。
2018-04-26 00:09
2
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-486392-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.016352 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved