利用一个小学方程的方法 摘要:解题思路:小学求鸡兔同笼的方法注意事项:参考代码:#include<stdio.h>intmain(){ints;scanf("%d",&s);for(inti…… 题解列表 2024年12月05日 0 点赞 0 评论 80 浏览 评分:0.0
比较简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intn,a=0,b=0;  …… 题解列表 2024年11月23日 0 点赞 0 评论 28 浏览 评分:0.0
1986: 鸡兔同笼(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i, x, y, z; scanf(&…… 题解列表 2024年10月28日 1 点赞 0 评论 36 浏览 评分:10.0
最暴力的写法 摘要:#include<bits/stdc++.h>using namespace std;int main(){int …… 题解列表 2024年08月08日 0 点赞 0 评论 60 浏览 评分:8.0
鸡兔同笼,C语言入门 摘要:解题思路:已知鸡兔的脚共有80只,鸡和兔的总数量是一个20到40的整数s,编写一程序计算鸡兔各有多少只。(s>=20&&s<=40)注意事项:设鸡有a只,兔子有b只,然后根…… 题解列表 2024年04月30日 0 点赞 0 评论 117 浏览 评分:0.0
鸡兔同笼(注意全为兔,或全为鸡的情况,用循环遍历出结果) 摘要:参考代码:```c#include#definesum80intmain(){ints;scanf("%d",&s);intx,y;//y是鸡,x是兔x=0,y=s-x;/…… 题解列表 2023年11月26日 0 点赞 0 评论 46 浏览 评分:0.0
1986: 鸡兔同笼 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;in…… 题解列表 2023年10月17日 0 点赞 0 评论 45 浏览 评分:0.0
奇怪的鸡兔同笼问题 摘要:解题思路:注意事项:参考代码:importjava.util.Scanner;/***c1986鸡兔同笼*Date:2023/2/10*Author:Cherish*/publicclassMain{…… 题解列表 2023年02月10日 0 点赞 0 评论 56 浏览 评分:0.0
鸡兔同笼(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intn,a,b,c,d; …… 题解列表 2023年02月03日 0 点赞 0 评论 114 浏览 评分:0.0
1986: 鸡兔同笼 摘要:```cpp#includeusingnamespacestd;intmain(){ints,x,y;cin>>s;y=(80-2*s)/2;x=s-y;cout…… 题解列表 2023年01月12日 0 点赞 1 评论 401 浏览 评分:9.9