Question: Is the following code infinite code? int count = 10; while (count
Is the following code infinite code?
int count = 10;
while (count <= 5)
{
System.out.println(count);
count = count - 1;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
