Connect with knowledgeable individuals and get your questions answered on IDNLearn.com. Our experts are ready to provide in-depth answers and practical solutions to any questions you may have.
Answer:
1 2 3 4 5 6 7 8 End
Explanation:
int i = 1;
while (i != 9){
System.out.print (i + " ");
i ++;
if (i == 9){
System.out.println("End");
}
}