使用Java,我應該創建一個存儲編號0,1的平方,2 10的元素的程序。方形陣列方案
我已經創建了顯示數字及其平方碼的一部分,但該程序直接進打倒所有的數字,不看組織。有人可以幫我寫出來喜歡這樣,而不是:
數:0平方:0
號:1的正方形:1
數:2平方:4
代碼
public static void main(String[] args) {
int[] temp = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
for (int value : temp) {
System.out.println(value);
}
for (int i = 0; i < temp.length; i++) {
temp[i] = (int) Math.pow(temp[i], 2);
}
for (int value : temp) {
System.out.println(value);
}
}
[絃樂爪哇輸出格式(http://stackoverflow.com/questions/4418308/java-output-formatting-for-strings ) –
如果這是應該使用'ArrayList',哪裏是它的使用?還是你沒有真的意味着'ArrayList'? – KevinO