2010년 1월 2일 토요일

전치 후치 연산자



11. int i =1,j =10;

12. do {

13. if(i++> --j) {

14. continue;

15. }

16. } while (i <5);

17. System.out.println("i = " +i+ "and j = "+j);

What is the result?

A. i = 6 and j = 5

B. i = 5 and j = 5

C. i = 6 and j = 5

D. i = 5 and j = 6

E. i = 6 and j = 6



--j 는 우선 연산이 되므로, i와 --j 를 비교하는 것.
그 다음 i 값이 증가가 됨.

if 1>9  while 2<5
if 2>8 while 3<5
if 3>7 while 4<5
if 4>6 while 5<5 false 

아이오 제이육





11. int i = 1,j = 10;

12. do {

13. if(i>j) {

14. break;

15. }

16. j--;

17. } while (++i <5);

18. System.out.println("i =" +i+" and j = "+j);

What is the result?

A. i = 6 and j = 5

B. i = 5 and j = 5

C. i = 6 and j = 4

D. i = 5 and j = 6

E. i = 6 and j = 6




if (1>10) , 9, while (2<5)

if (2>9), 8, while(3<5)

if (3>9), 7, while(4<5)



if (4>9), 6, while(5<5) → i=5, j=6



댓글 없음:

댓글 쓰기

국정원의 댓글 공작을 지탄합니다.

UPBIT is a South Korean company, and people died of suicide cause of coin investment.

 UPBIT is a South Korean company, and people died of suicide cause of coin. The company helps the people who control the market price manipu...