赞
踩
时间限制: 1000 ms 内存限制: 65536 KB
提交数: 156 通过数: 100
数学中经典的“鸡兔同笼”问题,已知头共x个,脚共y只,问笼中的鸡和兔各有多少只?
头和脚的数量。
鸡和兔各自数量。一个空格隔开。
30 90
15 15
- #include <stdio.h>
- int main()
- {
- int x,y; //x头数,y脚数
- int a,b; //a鸡的数量,b兔的数量
- scanf("%d%d",&x,&y);
- b=y/2-x;
- a=x-b;
- printf("%d %d\n",a,b);
- return 0;
- }
http://ybt.ssoier.cn:8088/problem_show.php?pid=2068
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。