早教吧 育儿知识 作业答案 考试题库 百科 知识分享

C++题怎么解决x,y的范围问题是10的101次幂Introduction:Zombieslovetoeatbrains.Yum.Input:Thefirstlinecontainsasingleintegern(n≤20)indicatingthenumberofdatasets.Thefollowingnlineseachrepresentadataset.Eachdat

题目详情
C++题 怎么解决x,y的范围问题 是10的101次幂
Introduction:
Zombies love to eat brains.Yum.
Input:
The first line contains a single integer n (n ≤ 20) 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.
X,Y < 10101
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
▼优质解答
答案和解析
#include
int main()
{
int i;
int N,x,y;
scanf("%d",&N);
for(i=0;i=y) printf("MMM BRAINS\n");
else printf("NO BRAINS\n");
}
}