In order for the compiler to better optimize the loop, we should try to reduce the judgment in the loop. One way is to integrate the judgment statement into the expression. For example:
For (int I = 0; I <1000*10; I ++) {sum + = data [I/1000] [I % 10];}
If we need to add a judgment, only non-negative integers need to be used for summation:
For (int I = 0; I <1000*10; I ++) {if (data [I/1000] [I % 10]> = 0) sum + = data [I/1000] [I % 10];}
The following statement is integrated into the expression:
For (int I = 0; I <1000*10; I ++) {sum + = (data [I/1000] [I % 10]> = 0) * data [I/1000] [I % 10];}
Note that this method of integrating judgment statements into expressions does not always work under any circumstances. If the if condition is true, you can consider integration like this. if such integration makes the logic complex, we do not recommend that you do this, it is very important to write simple and clear code. The best way is to test the performance of the two versions, and then select a better performance.