I
Size: a a a
I
I
AY
// StlStep2.cpp : Defines the entry point for the console application.
//#include "stdafx.h"
#include "vector"
#include <iostream>
using namespace std;
int main()
{
vector< int > MyArray;
for (int x=0;x < 10;x++)
MyArray.push_back(x);
vector< int >::iterator i;
for (i=MyArray.begin(); i!=MyArray.end();++i)
cout << *i << endl;
return 0;
}I
#include <vector>
#include <iostream>
I
for (const auto& i : MyArray)
...
I
TN
kk
I
НК
М
TN
НК
НК
EZ
DK
VB
DK