首页 > 代码库 > L1-047. 装睡
L1-047. 装睡
#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. 装睡
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。