码迷,mamicode.com
首页 > 其他好文 > 详细

L1-047. 装睡

时间:2017-08-10 21:09:19      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:cout   include   ace   cin   pac   iterator   return   push   std   

#include <iostream>
#include <string.h>
#include <vector>
using namespace std;

int main()
{
vector<string> c;
int n;
cin >> n;
int a, b;
for(int i=0; i<n; i++)
{
string str;
cin >> str;
cin >> a >> b;
if(a<15||a>20||b<50||b>70)
c.push_back(str);
}
vector<string>::iterator iter = c.begin();
for(; iter!=c.end(); iter++)
cout << *iter << endl;
return 0;
}

L1-047. 装睡

标签:cout   include   ace   cin   pac   iterator   return   push   std   

原文地址:http://www.cnblogs.com/1915884031A-qqcom/p/7341146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!