这简单的程序错在哪里
程序代码:#include<<iostream>>
vodi main()
{
cout<<"hello the world!"<<endl;
}我刚接触C++ 写了一个简单的程序 可是就是编译出错 我下载的vc6.0 也不提示错误在哪 怎么弄?
程序代码:#include<<iostream>>
vodi main()
{
cout<<"hello the world!"<<endl;
}我刚接触C++ 写了一个简单的程序 可是就是编译出错 我下载的vc6.0 也不提示错误在哪 怎么弄?
2011-07-08 10:58
程序代码:
#include<iostream>
void main()
{
cout<<"hello the world!"<<endl;
}
2011-07-08 11:31
2011-07-08 11:52
2011-07-08 12:17

2011-07-08 14:15
2011-07-08 14:29
2011-07-08 14:47
程序代码:#include<iostream>
using namespace std;
void main()
{
cout<<"Hello World"<<endl;
}或者用另一种,不过不推荐
程序代码:#include<iostream.h>
void main()
{
cout<<"Hello World"<<endl;
}
2011-07-08 16:31
2011-07-08 16:42
2011-07-09 13:00