用Java编程解决鸡兔同笼的问题

用for循环解决
2024-11-25 12:31:22
推荐回答(5个)
回答1:

以“今有雉兔同笼,上有三十五头,下有戚神毕九十四足,问雉兔各几何?”为例

public class test {
    public static void main(String[] args) {
     高芹   int x,y;  //x:鸡  y:兔
        for(x=0;x<=35;x++) {   //遍历鸡的只数
            y=35-x;        //兔瞎中的只数等于35 - 鸡
            if(2*x+4*y==94)   //如果鸡和兔的脚总数是94            
                System.out.println("鸡"+x+"只,兔"+y+"只");
               }
    }
}

回答2:

/*解: 设兔子有X只,鸡有Y只;
4x+2Y=脚;①
X+Y=头;②
假设鸡只有一只脚,兔子只有2条腿,则
约分:2X+Y=脚/2;③
且 鸡的脚和鸡的头都是1;
由②③得:慧掘
X+Y=头;②
2X+Y=脚/2;③厅盯
由③-②得到;
x=脚/2-头
即兔子的个数为脚/2-头
*/
public class 鸡兔同笼 {
public static void main(String[] args) {
int h = 35;
int f = 94;

int r= f/前伏核2-h;
int c=h-r;
System.out.println("笼中有鸡" + c + "只,兔" + r + "只");
}
}

回答3:

以“今有岩伏雉兔同笼,上有三十五头,下有九十四足,问雉辩搏兔携枣祥各几何?”为例
12345678910public class test { public static void main(String[] args) { int x,y; //x:鸡 y:兔 for(x=0;x<=35;x++) { //遍历鸡的只数 y=35-x; //兔的只数等于35 - 鸡 if(2*x+4*y==94) //如果鸡和兔的脚总数是94 System.out.println("鸡"+x+"只,兔"+y+"只"); } }}

回答4:

本节课教辩察大家如何运用scratch编程解决鸡兔同笼的携咐茄数简告学问题—晨煊少儿编程

回答5:

一楼的正解