如下代码为什么在vc6下通不过?

//chat1.cpp:Definestheentrypointfortheconsoleapplication.//#include<iostream.h>#inclu... // chat1.cpp : Defines the entry point for the console application.
//#include <iostream.h>
#include <iostream>

#include "stdafx.h"

/**
**
the while loop has executed 1 times
the while loop has executed 2 times
the while loop has executed 3 times
the while loop has executed 4 times
the while loop has executed 5 times
**
**/

//using namespace std;

int main(int argc, char* argv[])
{
int iterations = 0;
bool continue_loop = true;

while ( continue_loop != false )
{
iterations++;

cout<<"the while loop has executed "
<< iterations << " times\n";

if ( iterations == 5 )
continue_loop = false;
}

return 0;
}
//+++++++++++++++++++++++++++++++++++++++++++++++++
居然说cout为定义,这是怎么回事?
展开
 我来答
lly365
2006-09-08 · TA获得超过186个赞
知道小有建树答主
回答量:281
采纳率:0%
帮助的人:368万
展开全部
使用iostream时, 应使用命名空间
你把命名空间语句注释掉了

另外, 在VC里, 最好还是用iostream.h
使用这个头文件, 不用命名空间
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式