笔试面试 执行下面程序,正确的输出是() int x=5,y=7; void swap() { int z; z=x; x=y; y=z; } int main() { int x=3,y=8; swap(); printf(“%d,%dn”, x, y); return 0; }