| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 634 人关注过本帖
标题:关于这个 while 为何会循环打印 2 次
取消只看楼主 加入收藏
ctl184762651
Rank: 1
等 级:新手上路
帖 子:56
专家分:0
注 册:2014-5-31
结帖率:93.75%
收藏
 问题点数:0 回复次数:0 
关于这个 while 为何会循环打印 2 次
程序代码:
#include<stdio.h>
int main(void)
{   
int guess=1;
printf("Uh..is your number %d?\n",guess); 

    while(getchar()!='y')
    
    printf("Well,then,is it %d?\n",guess++);

printf("i konw i could do it\n");

return 0;
}

首先打印Uh..is your number 1
然后要求输入,如果等于Y,打印i konw i could do it
如果等于N,打印Well,then,is it %d?
假如如下
Uh..is your number 1?
键入n
Well,then,is it 2?
n
Well,then,is it 3?
y
i konw i could do it
这个是预期结果,可是为什么每次输入N后就连续打印2次
Well,then,is it 2?
Well,then,is it 3?
n
Well,then,is it 4?
Well,then,is it 5?
搜索更多相关主题的帖子: guess 
2014-09-11 23:07
快速回复:关于这个 while 为何会循环打印 2 次
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016603 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved