Computer Science, asked by ap07july, 8 months ago

1Examine the following code fragment:
int j = 1;
while ( j < 10)
{
System.out.println( j + " " );
j = j + j%3;
}
What is output to the monitor?

Answers

Answered by Kaushikkalesh
1

Output - "1 2 4 5 7 8"

Please Mark this as Brainliest

And Thank Me

Answered by Anonymous
4

Answer:

output 1 2 4 5 7

Explanation:

I hope it helps you

Similar questions