http://poj.org/problem?id=2027

判断a<b......脸皮这两天又厚了不少、、、这种题也拿来充数、、、忏悔ing

View Code
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main()
{
int t;
int a,b;
scanf("%d",&t);
while(t--)
{
scanf("%d%d",&a,&b);
if(a<b)
printf("NO BRAINS\n");
else
printf("MMM BRAINS\n");
}
return 0;
}

 

相关文章:

  • 2022-12-23
  • 2021-10-07
  • 2021-07-17
  • 2022-12-23
  • 2022-02-02
  • 2022-12-23
  • 2021-10-12
猜你喜欢
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案