int main ( void ) { int i = 0; int j; //...... if ( 0 == i ) j = 1; //违背1 else if ( 1 == i ) j = 3; //违背2 else j = 5; //违背3 return ( 0 ); }