编了个程序不出哪出错了大家来帮帮忙
#include "math.h"#include"stdio.h"
main()
{
int x,y,a,b;
printf("请输入腿的个数和头的只数:x,y=?");
scanf("%d%d\n",&f,&h);
a=h-b*1;
b=(f-2*(h-b))/4;
printf("鸡的个数是a=%d\n",a);
printf("兔的个数是b=%d\n",b);
}
要求笼中有鸡和兔各若干,数之有腿f只,有头h只。编程计算鸡.兔个多少只(f.h在程序运行时输入)?
其中的f和h我图方便就用x和y代替了。