// 30_30-1.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
//

#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <vector>
#include <algorithm>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	vector<int> intv;
	vector<int>::iterator p;

	intv.push_back(100);
	intv.push_back(200);
	intv.push_back(300);

	for (p = intv.begin(); p != intv.end(); ++p) {
		cout << *p << " ";
	}
	cout << '\n';

	MessageBox(NULL, _T("Check Console Window"), L"MessageBox", MB_OK);

	return 0;
}

