问答题

【参考答案】

void swap(int *x,int *y) { int temp; temp=*x; *x=*y; *y=temp; }
热门 试题