鸡兔同笼问题

package com.Summer_0416.cn;

/**
 * @author Summer
 * 鸡兔同笼问题
 * 鸡和兔共计35只 一共有腿94只 问:共有多少只鸡和多少只兔子
 */
public class Test_Method12 {

    public static void main(String[] args) {
        int x = 0;//
        
        for ( x = 0; x <= 35; x++) {
            int y = 35-x;
            if(x*2+y*4==94){
                System.out.println("鸡"+x+"\t兔"+y);
            }
        }

    }

}

 

posted @ 2019-04-16 22:05  Geek张东坡  阅读(151)  评论(0编辑  收藏  举报