题解 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 ……