习题9

来源:互联网 发布:js保存数据到本地文件 编辑:程序博客网 时间:2024/05/29 16:34
9.1.1void swap(int *x,int *y)     {         int *ptemp;         *ptemp=*x;         *x=*y;         *y=*ptemp;     }
9.1.2void swap(int *x,*y)     {      int*ptemp;     ptemp=x;     x=y;     y=ptemp;     }
9.2
原创粉丝点击