c++ hello world



#include <iostream>
using namespace std;
int main()
{
    cout << "HelloWorld
";
    return 0;
}



原文地址:https://www.cnblogs.com/wangjiale1024/p/10289756.html