1205: C hicken and rabbit s (简单数学题)

来源:互联网 发布:mac如何升级10.11 编辑:程序博客网 时间:2024/06/16 18:08

1205: C hicken and rabbit s

时间限制: 1 Sec  内存限制: 32 MB
提交: 53  解决: 36
[提交][状态][讨论版]

题目描述

Chicken and rabbits are in a same cage. As we all know, chicken has two legs but rabbit has four. Now
we know the number of legs in the cage is A, please tell me how many animals may in the cage at least
and at most.

输入

The first line of the input contains the number of test cases in the file. Each test case that follows
consists of one lines. each case contains only one integer numbers A specifying the total legs in the
cage .

输出

For each test case, print a line contains the answer

样例输入

2
3
20

样例输出

0 0
5 10
 
#include<stdio.h>#include<string.h>#include<math.h>#include<algorithm>#define MIN(x,y)(x<y?x:y)#define MAX(x,y)(x>y?x:y)using namespace std;int main(){int t,n,min,max;scanf("%d",&t);while(t--){min=0;max=0;scanf("%d",&n);if(n&1)printf("0 0\n");else{max=n/2;if(n%4==0)min=n/4;elsemin=(n-2)/4+1;printf("%d %d\n",min,max);}}return 0;}

0 0