C++第一个程序

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_31339221/article/details/82192336
#include "iostream"
int main()
{
	using namespace std;
	cout << "Hello" << endl;
	system("pause");
}

环境VS2010

运行结果:

猜你喜欢

转载自blog.csdn.net/qq_31339221/article/details/82192336