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
1
Output - "1 2 4 5 7 8"
Please Mark this as Brainliest
And Thank Me
Answered by
4
Answer:
output 1 2 4 5 7
Explanation:
I hope it helps you
Similar questions
Math,
4 months ago
Math,
4 months ago
Environmental Sciences,
4 months ago
Computer Science,
8 months ago
Computer Science,
8 months ago