注册 登录
编程论坛 VC.NET论坛

在.net2005中写了一段简单的代码怎么无法运行啊

wangjijian 发布于 2006-05-13 08:08, 1344 次点击

在.net2005中写了一段简单的代码怎么无法运行啊
#include "stdafx.h"
#include <iostream.h>
using namespace std;
int main(int arc,char* argv[])
{
cout<<"hello world";
return 0;
}
请各位大虾指教

1 回复
#2
强仔2006-05-26 17:42
#include <iostream.h>改为#include <iostream>

1