zoukankan      html  css  js  c++  java
  • 一个poj水题ID 2027

    Problem:

    Input

    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. 

    Output

    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".

    Sample Input

    3
    4 5
    3 3
    4 3
    

    Sample Output

    NO BRAINS
    MMM BRAINS
    MMM BRAINS



    My Answer(一次通过哦,只是寻找一下安慰,嘿嘿)
    #include <iostream>
    using namespace std;
    int main()
    {
         int i,num1,num2;
         cin>>i;
         while(i>0)
         {
             cin>>num1>>num2;
             if(num1>=num2) cout<<"MMM BRAINS"<<endl;
             else cout<<"NO BRAINS"<<endl;
             i--;
                   }
         return 0;
     }
    

     因为基础是在是很差,所以学习进度超慢,很木有信心啊。。。所以找来水题做一下,找点自信,嘿嘿,见笑,见笑~~

     
  • 相关阅读:
    oracle 索引
    oracle 子查询因子化 浅谈(with的使用)
    大数据的遐想
    数据挖掘(算法概要链接)
    orcale 修改字段属性
    sql 对一张表进行按照不同条件进行多次统计
    oracle dblink
    oracle作业
    SQL效率的几点心得
    提高SQL语句的性能
  • 原文地址:https://www.cnblogs.com/lx09110718/p/poj2027.html
Copyright © 2011-2022 走看看