Untitled

Anonymous
plain_text
01/08/2025 2:38 PM
160 B
15
Indexable
for (int i = 0; i < grades.size(); i++){
    if (grades.get(i) < 70.0){
        grades.remove(i);
        i--;
    }
}
Editor is loading...
Leave a Comment