what will the output when x=30,y=30 i=10;j=10; if(x<100) if (y>50);++j;else ++i; System.out.print(i+" " +j);
Answers
Answered by
0
Answer:
10 11
Explanation:
since the first condition is correct. x<100 true so
++j otherwise ++i.
Similar questions