Computer Science, asked by premsaha979, 2 months ago

int x=1000,y=9,z=5;
do
{
x=x/y;
z=z++ + 1;
}
While(y<=x);
System.out.println("Value of z= "+z);​

Answers

Answered by vyasm0759
0

Answer:

THE VALUE OF Z IS  7

Explanation:

Similar questions