C语言实训:鸡兔同笼
用户输入两个正整数,第一个代表头数,第二个代表脚数,计算鸡和兔的数量,若无解输出Error
#include <stdio.h> main() { int a,b,j,t; scanf("%d%d",&a,&b);//头数 脚数 j=(4*a-b)/2;//头数的4倍(鸡的4倍相当于鸡的脚数的2倍,兔的4倍相当于兔的脚数 ) 所以j是鸡的数量 t=a-j;// 根据第6行注释,t是兔的数量 if(b%2==0 || b%4==0) printf("鸡:%d,兔:%d\n",j,t); else printf("Error"); getchar(); }
#include <stdio.h> main() { int a,b,c,d,f=0; scanf("%d%d",&a,&b); for(c=0;c<=a+b;c++) { for(d=0;d<=a+b;d++) if(c+d==a && 2*c+4*d==b) printf("鸡:%d,兔:%d\n",c,d),f=1; } if(f==0) printf("Error"); getchar(); }