Given:
public class App {
public static void main(String[] args) {
int i = 10;
int j = 20;
int k = j += i / 5;
System.out.print(i + " : " + j + " : " + k);
}
}
What is the result?
A.
10 : 22 : 20
B.
10 : 22 : 22
C.
10 : 22 : 6
D.
10 : 30 : 6
題解
「j += i / 5」會將i變數儲存的10先除以5,再把這個值加回j變數,然後再回傳最後j變數的值。