Untitled
Anonymous
plain_text
03/13/2024 10:15 AM
204 B
10
Indexable
int i =0;
while (i<=10) {
System.out.println(i);
i++;
}
int j =0;
do {
System.out.println(j);
j++;
}
while(j<=10);
}Editor is loading...
Leave a Comment