for( int i = 0 ; i < 100 || someOtherCondition() ; i++ ) { ... }
for (int i = 0, j = 0; isMatrixElement(i,j,myArray); i++, j++) { // ... }