xxxxxxxxxx
int index = 0;
for(Element song : question) {
System.out.println("Current index is: " + (index++));
}
xxxxxxxxxx
for(int i = 0; i < question.length; i++) {
System.out.println("Current index is: " + i);
}
xxxxxxxxxx
*Testing*
int index = 0;
for(Element song : question) {
System.out.println("Current index is: " + (index++));
}
xxxxxxxxxx
//you have to do it manually
int index = 0;
while True {
System.out.println("Current index is: " + (index));
index ++
}