题解 1986: 鸡兔同笼

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

筛选

1986: 鸡兔同笼(c语言)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int i, x, y, z;    scanf("%d", &z);    for (y = 0; y……

1986: 鸡兔同笼

摘要:```cpp #include using namespace std; int main() { int s,x,y; cin>>s; y=(80-2*s)/2……

最暴力的写法

摘要:#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i=0;i<=n;i……

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

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

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

摘要:利用二元一次方程组求解 设鸡为x,兔为y x+y=s 2x+4y=80 x=s-y 2(s-y)+4y=80 2s+2y=80 y=(80-2s)/2 x=s-y ```cpp ……

1986: 鸡兔同笼

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int n; ……

让公鸡抬一只脚兔子抬两只脚的方法

摘要:解题思路:让公鸡抬起一只脚,兔子抬起两只脚,那就一半的脚没有在地上,一半的脚在空中。公鸡的脚和公鸡的头数量就一样,兔子在地上的脚就是兔子头的两倍所以一半的脚减去所有的头就得到了兔子的数量公鸡的数量用全……