我想輸入4個值到數組中,從每個值中減去5,並打印出新的值。新陣列:返回數組值
我總是遇到問題,正確調用方法和返回方法輸出到正確的地方,即。在System.out.println
之下。
我也不能肯定,如果我減去機構的工作原理:
public class TestCase{
public static void main(String[] args) {
int [] user1 = {1,2,3,4};
int []normalizedNumbers = compareUser(int [] user1);
{
System.out.println(normalizedNumbers[n]); //this is where I want my end result
}
}
public static int []compareUsers(int [] user1){
int [] normalizingStuff = new int[user1];
int n = 0;
for (n=0; n<user1;n++){
normalizingStuff [n] = user1 [n]-5;//subtracting 5 from values at each index of user1
}
return normalizingStuff;//this is what i want printed out
}
}
您需要一個循環。 – SLaks 2012-02-21 18:42:31
其中是System.out.println的循環? main()中沒有'n'它是如何編譯的? – 2012-02-21 18:43:43
,它不是'n
2012-02-21 18:45:08