How to check if my integer can be divided by 3 as below:
for(int i=0; i<24; i++){ //here, how to check if \"i\" can be divided by 3 completely(e.g. 3,
if( i % 3 == 0 )
The % operator delivers you the rest of the division i / 3