您的位置:首页 > 大数据 > 人工智能

poj 2027 No Brainer

2012-05-11 09:12 309 查看
#include "iostream"
using namespace std;

int main()
{
int tc, eat, alive;
cin >> tc;
while (tc--)
{
cin >> eat >> alive;
if (eat < alive)
cout << "NO BRAINS" << endl;
else
cout << "MMM BRAINS" << endl;
}

system("pause");
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: