int main ( void ) { int array[ 3 ] = { 0, 1, 2 }; //遵循1 int i; int data = 0; for ( i = 0; i < 3; i++ ) { data = data + array[ i ]; } return ( 0 ); }