标题:[求助]为什么输入整数的时候运行正常,如果输入非整数就会连续不断的输出* ...
取消只看楼主
27149
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2005-5-16
 问题点数:0 回复次数:0 
[求助]为什么输入整数的时候运行正常,如果输入非整数就会连续不断的输出* * wrong

大家看看下面一段程序
为什么输入整数的时候运行正常,如果输入非整数就会连续不断的输出* * wrong * *
// 3_1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "iostream.h"

int main(int argc, char* argv[])
{
int c=1;
int magic=123;
int guess;
while(c)
{
cin>>guess;
if(guess==magic)
{cout<<"* * right * *"<<endl;
c=0;}
else
cout<<"* * wrong * *"<<endl;
}
return 0;
}

搜索更多相关主题的帖子: wrong 整数 连续不断 int 
2006-01-22 09:07



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-43637-1-1.html




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

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