若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1648: No Brainer

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,146

题目描述

Zombies love to eat brains. Yum.

输入

The first line contains a single integer n indicating the number of data sets.

The following n lines each represent a data set. Each data set will be formatted according to the following description:

A single data set consists of a line "X Y", where X is the number of brains the zombie eats and Y is the number of brains the zombie requires to stay alive.

输出

For each data set, there will be exactly one line of output. This line will be "MMM BRAINS" if the number of brains the zombie eats is greater than or equal to the number of brains the zombie requires to stay alive. Otherwise, the line will be "NO BRAINS".

样例输入

3
4 5
3 3
4 3

样例输出

NO BRAINS
MMM BRAINS
MMM BRAINS

参考代码

#include<stdio.h> 
#include<math.h> 
int main() 
{
    int n,i,a,b;
    scanf("%d",&n);
    for (i=0;i<n;i++) 
    {
        scanf("%d%d",&a,&b);
        if(a>=b) 
            printf("MMM BRAINSn"); 
    else
    printf("NO BRAINSn"); 
    } 
  return 0;
}

解析

暂无

hustoj

发表评论 取消回复

邮箱地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

Skip 原站点 Dreams孤独患者
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist