#define pabs( x ) x >= 0 ? x : -x //违背1 int main ( void ) { unsigned int result; int a = 6; /* ... */ result = pabs ( a ) + 1; return ( 0 ); }