标签:ring cto end ios std ace turn push iostream
#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main()
{
vector <string> name;
name.push_back("xiao jia yu ~");
name.push_back("xiao you yu ~");
for( int i=0; i < name.size(); i++ )
{
cout<<name[i]<<endl;
}
return 0;
}
标签:ring cto end ios std ace turn push iostream
原文地址:http://www.cnblogs.com/TogetherLaugh/p/6640993.html