用Java编写鸡兔同笼问题,具体编码
时间: 2023-04-04 16:01:46 浏览: 113
有关鸡兔同笼问题的代码
很高兴回答你的问题。以下是用 Java 编写鸡兔同笼问题的代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入总头数:");
int head = input.nextInt();
System.out.print("请输入总脚数:");
int foot = input.nextInt();
int rabbit = (foot - 2 * head) / 2;
int chicken = head - rabbit;
if (rabbit >= && chicken >= && (foot - rabbit * 4 - chicken * 2) == ) {
System.out.println("鸡的数量为:" + chicken);
System.out.println("兔的数量为:" + rabbit);
} else {
System.out.println("无法确定鸡和兔的数量!");
}
}
}
希望能够帮到你!
阅读全文