VS 2017 安装后 第一个 C++ 测试程序

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zaishuiyifangxym/article/details/82931990

安装VS 2017 后 可以用下面的 C++ 程序作为测试:

#include<iostream>
int main()
{
	using namespace std;
	cout << "Come up and C++ me some time.";
	cout << endl;
	cout << "You wont't regert it!" << endl; 
	cin.get();
	return 0;
}

运行结果:

猜你喜欢

转载自blog.csdn.net/zaishuiyifangxym/article/details/82931990