#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<numeric>
void PrintFunc(int val)
{
cout << val << " ";
}
void test1801()
{
vector<int> v;
v.resize(10);
fill(v.begin(), v.end(), 1);//后期重新填充容器
for_each(v.begin(), v.end(), PrintFunc);
cout << endl;
}
int main()
{
test1801();
system("pause");
return 0;
}
网友评论