Is there a proper side in an IF statements expression to have the control value tested against another value (I hope I said that right).
So should the 'mostRolledNumber' be to the right, left or it does not matter?
-Lars
Code:
-(void)mostRolledNumMethod{
for (int i = 1; i <= 100; i++) {
if (mostRolledNumber[i] < highestRollSoFar) {
highestRollSoFar = mostRolledNumber[i];
}
}
So should the 'mostRolledNumber' be to the right, left or it does not matter?
-Lars