What are two examples of conditional loops?

1 answer

Answer

1003420

2026-04-15 10:20

+ Follow

while(condition) {

dosomestuff();

}

for(i = 0; i < 10; i++) {

dosomestuff();

}

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.