int x = 3; while (x < 9)
System.out.print(x + " ");
}
Answers
Answered by
0
Answer:
infinite 3 value of x
Explanation:
because if we don't use increment operation in loops it will give infinite result
Similar questions