这简单的程序错在哪里
程序代码:
#include<<iostream>> vodi main() { cout<<"hello the world!"<<endl; }我刚接触C++ 写了一个简单的程序 可是就是编译出错 我下载的vc6.0 也不提示错误在哪 怎么弄?
#include<<iostream>> vodi main() { cout<<"hello the world!"<<endl; }我刚接触C++ 写了一个简单的程序 可是就是编译出错 我下载的vc6.0 也不提示错误在哪 怎么弄?
#include<iostream> void main() { cout<<"hello the world!"<<endl; }
#include<iostream> using namespace std; void main() { cout<<"Hello World"<<endl; }或者用另一种,不过不推荐
#include<iostream.h> void main() { cout<<"Hello World"<<endl; }