#include <bits/stdc++.h> using namespace std; string s[4] = { "bowl", "knife", "fork" ,"chopsticks" }; int n; int main() { set<string> p;//建立一个集合 for (int k = 0; k < 4; k++)//将餐具放入集合中 p.insert(s[k]); while (cin >> n) { string h; for (int i = 0; i < n; i++) { cin >> h; if (p.count(h) != 0)//如果在集合中已经存在,则输出 cout << h<<" "; } cout << endl; } return 0; }
0.0分
0 人评分