首页 > 编程语言 > 详细

java求鸡兔同笼问题

时间:2017-09-13 23:01:14      阅读:330      评论:0      收藏:0      [点我收藏+]

import java.util.Scanner;

public class jitutonglong
{
static int j,t;
public static int qiongju(int head,int foot)
{
int re,x,y;
re=0;
for(x=0;x<=head;x++)
{
y=head-x;
if(x*2+y*4==foot)
{
re=1;
j=x;
t=y;

}

}
return re;
}
public static void main(String args[])
{
int re,head,foot;
System.out.println("穷举法求鸡兔同笼问题:");
System.out.println("请输入头数:");
Scanner input=new Scanner(System.in);
head=input.nextInt();
System.out.println("请输入脚数:");
foot=input.nextInt();
re=qiongju(head, foot);
if(re==1)
{
System.out.println("鸡有"+j+"只,兔有"+t+"只");
}
else
{
System.out.println("无法求解。");
}
}

}

java求鸡兔同笼问题

原文:http://www.cnblogs.com/fanzhengzheng/p/7518069.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!