int main ( void ) { unsigned int x; int y, i; x = 2; y = -2; if ( y < x ) //违背1 { i = 0; } else { i = 1; } return ( 0 ); }