この配列リストを印刷する必要があります。誰かが助けてくれます。通常のダブルからダブルに変更しましたが、それでも機能しません助けてください。
import java.util.*;
パブリッククラスハイツ{
static ArrayList <Double> Heights = new ArrayList <Double>();
public static void main(String[] args) {
//use it use the method
addsomeheight(5.1);
addsomeheight(6.2);
addsomeheight(6.3);
addsomeheight(5.4);
addsomeheight(5.5);
addsomeheight(5.6);
addsomeheight(5.7);
addsomeheight(5.8);
addsomeheight(5.9);
addsomeheight(6.9);
//declare a new method
}
private static void addsomeheight(Double x) {
for (Double x1 : Heights){
System.out.println(x1);
}
}
}