Computer Science, asked by js1708843, 5 months ago

int i = 1;
while (i<=8)
{
if(i%2== 0)
{
i++;
continue;
}
else
{
System.out.println(i);
i++;
}​

Answers

Answered by xxAjayxx
0

Answer:

▼5.2.1

Analyze the following code. Is count < 100 always true, always false, or sometimes true or sometimes false at Point A, Point B, and Point C?

int count = 0;

while (count < 100) {

// Point A

System.out.println("Welcome to Java!");

count++;

// Point B

}

// Point C

Show Answer Read Question

Similar questions