Untitled
unknown
plain_text
2 years ago
151 B
7
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
int i =0;
while (i<=10) {
System.out.println(i);
i++;
}
int j =0;
do {
System.out.println(j);
j++;
}
while(j<=10);
}