java 程式 生子程式

來源:互聯網
上載者:User

package woman.ham.vagina;

import java.text.DecimalFormat;
import java.util.Random;
import java.util.Scanner;
import java.util.TreeSet;

/**
 *
 * @author keeny
 *
 */
public class GrowSonFactory {
    public static final String BOY = "boy";
    public static final String GIRL = "girl";

    private static void product(String sex) {
        Man man = Man.newInstance();
        Woman woman = Woman.newInstance();
        Son mySon = null;

        while (true) {
            mySon = join(man, woman);
            sleepOneYear();
            if (mySon.getSex().equals(sex))
                break;
            else
                continue;
        }
        System.out.println("\n恭賀喜得貴子:" + mySon.getSex());
    }

    private static void sleepOneYear() {
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    private static Son join(Man man, Woman woman) {
        Son son = new Son();
        int strongestSperm = man.getSperm();
        System.out.println();
        int strongestOvum = woman.getOvum();
        if (strongestSperm == strongestOvum) {
            System.out.println("恭喜你:雙胞胎!");
        } else {
            if ((strongestSperm + strongestOvum) % 2 == 0) {
                son.setSex(BOY);
            } else {
                son.setSex(GIRL);
            }
        }
        return son;
    }

    private static String inputSex() {
        Scanner scanner = new Scanner(System.in);
        String sex = null;
        if (scanner.hasNext()) {
            sex = scanner.next();
        }
        if (sex == null) {
            System.out.println("輸入不可為空!重新輸入:");
            return inputSex();
        }
        if (!sex.equalsIgnoreCase(BOY) && !sex.equalsIgnoreCase(GIRL)) {
            System.out.println("輸入性別格式錯誤(boy/girl):" + sex + "重新輸入:");
            return inputSex();
        }
        return sex;
    }

    public static void main(String[] args) {
        System.out.println("請選擇想要的性別(boy/girl):");
        String sex = inputSex();
        GrowSonFactory.product(sex);
    }
}

class Man {
    public static DecimalFormat format = new DecimalFormat("0.0000");

    public static Man newInstance() {
        return new Man();
    }

    public int getSperm() {
        TreeSet<Integer> sperms = new TreeSet<Integer>();
        double maxSperm = new Random().nextInt(Integer.MAX_VALUE / 10000);
        for (int i = 1; i < maxSperm + 1; i++) {
            System.out.print("\rIn sex ... "
                    + format.format((i / maxSperm) * 100) + " %\t" + i + "/"
                    + (int) maxSperm);
            sperms.add(new Random().nextInt(i));
        }
        return sperms.last();
    }
}

class Woman {
    public static DecimalFormat format = new DecimalFormat("0.0000");

    public static Woman newInstance() {
        return new Woman();
    }

    public int getOvum() {
        TreeSet<Integer> sperms = new TreeSet<Integer>();
        double maxOvum = new Random().nextInt(Integer.MAX_VALUE / 10000);
        for (int i = 1; i < maxOvum + 1; i++) {
            System.out.print("\rIn sex ... "
                    + format.format((i / maxOvum) * 100) + " %\t" + i + "/"
                    + (int) maxOvum);
            sperms.add(new Random().nextInt(i));
        }
        return sperms.last();
    }
}

class Son {
    private String sex;

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.