c++语言之helloworld

编程必背,受益终身
#include
using namespace std;

int main()
{
cout << “hello world” << endl;
return 0;
}