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