Computer Science, asked by bmittu1999, 1 year ago

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 ak260339p1m1fd
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 sana961
0

Answer:1

Explanation:

Similar questions