mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 21:08:47 +00:00
670. 动物
https://www.acwing.com/problem/content/submission/code_detail/6826555/
This commit is contained in:
parent
3c2f792e15
commit
da3e3af625
38
AcWing/670/670.cpp
Normal file
38
AcWing/670/670.cpp
Normal file
@ -0,0 +1,38 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
string a, b, c;
|
||||
cin >> a >> b >> c;
|
||||
if (a == "vertebrado") {
|
||||
if (b == "ave") {
|
||||
if (c == "carnivoro") {
|
||||
cout << "aguia" << endl;
|
||||
} else if (c == "onivoro") {
|
||||
cout << "pomba" << endl;
|
||||
}
|
||||
} else if (b == "mamifero") {
|
||||
if (c == "onivoro") {
|
||||
cout << "homem" << endl;
|
||||
} else if (c == "herbivoro") {
|
||||
cout << "vaca" << endl;
|
||||
}
|
||||
}
|
||||
} else if (a == "invertebrado") {
|
||||
if (b == "inseto") {
|
||||
if (c == "hematofago") {
|
||||
cout << "pulga" << endl;
|
||||
} else if (c == "herbivoro") {
|
||||
cout << "lagarta" << endl;
|
||||
}
|
||||
} else if (b == "anelideo") {
|
||||
if (c == "hematofago") {
|
||||
cout << "sanguessuga" << endl;
|
||||
} else if (c == "onivoro") {
|
||||
cout << "minhoca" << endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user