Respuesta :
public class MyClass {
public static void main(String args[]) {
int count = 0;
for (int i = 29; i < 90; i++){
if (count == 9){
System.out.println(i);
count = 0;
}
else{
System.out.print(i + " ");
count++;
}
}
}
}
I hope this helps!
Loops are used for operations that are to be performed repeatedly.
The for loop in Java is as follows:
for(int i = 23; i<=89; i++){
System.out.print(i+" ");
if(i%10==2){
System.out.println();
}
}
The flow of the program segment is as follows:
//This iterates from 23 to 89
for(int i = 23; i<=89; i++){
//This prints all numbers from 23 to 29
System.out.print(i+" ");
//The following if condition prints a line, after 10 numbers have been printed
if(i%10==2){
System.out.println();
}
}
See attachment for complete program and the sample run
Read more about similar programs at:
https://brainly.com/question/19309140
