L1-047. 装睡
Posted diamondDemand
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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. 装睡的主要内容,如果未能解决你的问题,请参考以下文章