int fun ( height ) //违背1 { int h; h = height + 10; return h; } int main ( void ) { int i, j; i = 1000; j = fun ( i ); return ( 0 ); }