标签:java
描述
已知笼中有头h个,有脚f条,问笼中鸡兔各有多少只, 如果无法组成
输入
h(0<h<2147483647)
f(0<f<2147483647)
输出
鸡的数目
兔子的数目
public class Main { public static void main(String[] args){ int h = 0; int f = 0; Scanner scanner = new Scanner(System.in); h = scanner.nextInt(); f = scanner.nextInt(); scanner.close(); int j = 0; //鸡的数量 int t = 0; //兔的数量 for (j = 1; j <= h; j++) { for (t = 1; t <= h; t++) { if(j+t==h && j*2+t*4 == f){ System.out.println(j); System.out.println(t); } } } } }
本文出自 “生命不息,折腾不止” 博客,请务必保留此出处http://admxj.blog.51cto.com/10955090/1836826
标签:java
原文地址:http://admxj.blog.51cto.com/10955090/1836826