public class JavaApplication64 {
public static void main(String[] args) {
int count = 0;
for (int i = 23; i <= 89; i++){
if (count == 10){
System.out.println("");
count = 0;
}
System.out.print(i+" ");
count += 1;
I hope this helps!
6.3m questions
8.3m answers