基本上之間的數字的ArrayList,我需要創建一個名爲方法:創建含有一組用戶定義的最小值和最大值(JAVA)
public boolean doesContain(double x)
其工作方式如下:
Returns true if and only if x lies between left and right, and the
interval is not empty (i.e. left < right).
這是類的樣子:
public class Interval {
private double left;
private double right;
public Interval(double left, double right){
this.left = left;
this.right = right;
}
public boolean doesContain(double x){
ArrayList<Double> nums = new ArrayList<Double>();
//Add code here
}
}
您遇到什麼問題? – Reimeus 2013-03-02 15:24:55
我想創建一個給定範圍內的數字列表,然後放入數組...但我真的不知道如何生成這些數字。 – 2013-03-02 15:28:26
你正在使用雙打,理論上在2雙打內有無窮的數字,所以你不能列出所有的數字。 – niculare 2013-03-02 15:38:12