1. 程式人生 > >VS 2017 安裝後 第一個 C++ 測試程式

VS 2017 安裝後 第一個 C++ 測試程式

安裝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;
}

執行結果: