int main ( void ) { int a = 5; int b = 0; int c, d; c = a / b; //违背1 d = a % b; //违背2 return ( 0 ); }