题解 1986: 鸡兔同笼

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

鸡兔同笼 (C语言代码)

摘要:解题思路:简单的二次方程,在纸上面写出来公式就行了注意事项:参考代码:#include<stdio.h>int main(void){ int s; int r, c; scanf("%d", &s)……

鸡兔同笼 (C语言代码)

摘要:解题思路:双层循环注意事项:可以稍微计算一下鸡和兔分别可能的最小值与最大值,进而优化代码。然而我太懒了。参考代码:#include<stdio.h> int main() { int r……

鸡兔同笼-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s; int x = 0, y = 0;// x 为鸡的数量 y 为兔的数量 scanf("%d", &……

1986: 鸡兔同笼

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int total; scanf("%d",&total); if(total>=20&&t……