c++ hello world

#include<iostream>
using namespace std;
int main()
{
    cout<<"Hello World!"<<endl;
    return 0;
}
原文地址:https://www.cnblogs.com/zhouweibaba/p/10308236.html