1.1输出“hello,world”

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