what will be the final value of variable x after the following code is executed- int x=10; while (x>1) { x=x/3; ++x; }
Answers
Answered by
5
I think the answer is x=1 if this following code is executed.
bmittu1999:
can u plz give me the exact answer
Answered by
0
Answer:1
Explanation:
Similar questions